* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --primary: #8a99ff;
    --dark: #0f172a;
    --dark-light: #1e293b;
    --gray: #94a3b8;
    --white: #f8fafc;
    --max-width: 1200px;
    --glass: rgba(255,255,255,0.05);
    --glass-border: rgba(255,255,255,0.1);
    --glass-shine: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%);
}
.glass { background: var(--glass); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid var(--glass-border); position: relative; overflow: hidden; }
.glass::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 50%; background: var(--glass-shine); pointer-events: none; }

body {
    font-family: 'Pretendard', -apple-system, sans-serif;
    background: var(--dark);
    color: var(--white);
    line-height: 1.6;
    position: relative;
    overflow-x: hidden;
}

/* Gradient Orbs Background */
body::before,
body::after {
    content: '';
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
    pointer-events: none;
    z-index: -1;
}
body::before {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(138,153,255,0.6) 0%, transparent 70%);
    top: -200px;
    left: -100px;
    animation: orbFloat1 20s ease-in-out infinite;
}
body::after {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(124,58,237,0.5) 0%, transparent 70%);
    bottom: 10%;
    right: -150px;
    animation: orbFloat2 25s ease-in-out infinite;
}
@keyframes orbFloat1 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(80px, 60px); }
}
@keyframes orbFloat2 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-60px, -80px); }
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
a { text-decoration: none; color: inherit; transition: color 0.3s; }

/* Header - Floating Pill */
html { scroll-behavior: smooth; }
.header-float { position: fixed; top: 24px; left: 0; right: 0; z-index: 9999; display: flex; justify-content: center; padding: 0 24px; pointer-events: none; }
.header-pill { pointer-events: auto; background: rgba(15, 23, 42, 0.4); backdrop-filter: blur(40px); -webkit-backdrop-filter: blur(40px); border: 1px solid rgba(255,255,255,0.06); border-radius: 100px; padding: 0 40px; height: 68px; display: flex; align-items: center; justify-content: space-between; width: 100%; max-width: 1200px; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
.header-pill:hover { background: rgba(15, 23, 42, 0.6); border-color: rgba(138,153,255,0.15); }
.logo { display: flex; align-items: center; }
.logo img { height: 36px; width: auto; }
.nav-menu { display: flex; align-items: center; gap: 32px; }
.nav-link { font-size: 16px; font-weight: 400; color: var(--gray); transition: all 0.3s; position: relative; }
.nav-link::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--primary); transition: all 0.3s; }
.nav-link:hover { transform: scale(1.05); color: var(--white); }
.nav-link:hover::after { width: 100%; }
.btn-contact { background: var(--primary); padding: 10px 28px; border-radius: 100px; font-size: 15px; font-weight: 700; color: #fff; transition: all 0.3s; }
.btn-contact:hover { transform: scale(1.05); box-shadow: 0 8px 25px rgba(138,153,255,0.4); }
@media (max-width: 850px) { .nav-menu { display: none; } .header-pill { height: 60px; padding: 0 24px; } .header-float { top: 16px; padding: 0 16px; } }

/* Sections */
.section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.section h2 { font-size: 2.5rem; font-weight: 600; color: var(--gray); opacity: 0.3; }

/* Hero - 새로운 동영상 배경 섹션 */
.im-custom-hero {
    position: relative;
    width: 100%;
    height: 80vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 동영상 배경 */
.im-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.im-video-bg iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 177.78vh; /* 16:9 비율 보정 */
    height: 56.25vw;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

/* 동영상 오버레이 (어둡게) */
.im-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1;
}

/* Hero 콘텐츠 */
.im-hero-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.im-hero-content {
    text-align: left;
    animation: fadeUp 0.8s ease-out;
}

.im-hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 24px;
    color: var(--white);
}

.im-hero-content h1 span {
    color: #6B8FFF;
    display: inline-block;
}

.im-hero-description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.8;
}

/* 버튼 그룹 */
.im-hero-btns {
    display: flex;
    gap: 16px;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.im-btn {
    display: inline-block;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
}

.im-btn-white {
    background: white;
    color: #000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.im-btn-white:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.im-btn-outline {
    background: var(--glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: white;
    border: 1px solid var(--glass-border);
}

.im-btn-outline:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(138,153,255,0.2);
}

/* Footer 영역 (아바타 그룹) */
.im-hero-footer {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.7);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
}
.scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}
.scroll-wheel {
    width: 4px;
    height: 8px;
    background: rgba(255,255,255,0.8);
    border-radius: 2px;
    animation: scrollAnim 1.5s ease-in-out infinite;
}
@keyframes scrollAnim {
    0%, 100% { opacity: 1; transform: translateY(0); }
    50% { opacity: 0.3; transform: translateY(6px); }
}

.im-avatar-group {
    display: flex;
    align-items: center;
}

.im-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid white;
    margin-left: -10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.im-avatar:first-child {
    margin-left: 0;
}

/* 반응형 */
@media (max-width: 768px) {
    .im-hero-content h1 {
        font-size: 2rem;
    }
    
    .im-hero-description {
        font-size: 1rem;
    }
    
    .im-hero-btns {
        flex-direction: column;
        align-items: center;
    }
    
    .im-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .im-hero-footer {
        flex-direction: column;
        gap: 16px;
    }
}

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

/* Footer */
.footer-main { display: flex; justify-content: space-between; align-items: flex-start; padding-bottom: 50px; }
.footer { padding: 60px 24px 30px; background: var(--dark-light); }
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start; /* 정렬 맞춤 */
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.footer-brand p { margin-top: 12px; color: var(--gray); font-size: 0.9rem; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: var(--gray); font-size: 0.9rem; }
.footer-links a:hover { color: var(--primary); }
.footer-bottom { display: flex; justify-content: space-between; align-items: flex-end; /* 로고가 바닥에 붙도록 설정 */ padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.05); }.footer-info { font-size: 0.8rem; color: var(--gray); line-height: 1.8; }
.footer-brand-low .logo { display: block; margin-bottom: 8px; }
.footer-brand-low .logo img { height: 40px; }
.footer-brand-low p { font-size: 0.75rem; color: rgba(148, 163, 184, 0.4); }
.footer-social { display: flex; gap: 30px; }
.info-row { margin-bottom: 4px; }
.info-row span { display: inline-block; }
.divider { margin: 0 10px; opacity: 0.3; }

/* SNS 링크 스타일 (핵심 기능) */
.footer-social { display: flex; gap: 40px; /* 간격 확장 */ }
.social-link { font-size: 0.85rem; font-weight: 600; letter-spacing: 0.1em; color: var(--gray); position: relative; padding: 5px 0; transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);}

/* 호버 시 부각 효과 */
.social-link:hover { color: var(--white); transform: translateY(-5px); /* 위로 살짝 이동 */ text-shadow: 0 0 15px rgba(37, 99, 235, 0.5); /* 은은한 네온 효과 */ }

/* 호버 시 하단 언더라인 애니메이션 */
.social-link::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--primary); transition: width 0.3s ease; }
.social-link:hover::after { width: 100%; }

/* 하단 영역 스타일 정리 */
.footer-bottom {display: flex; justify-content: space-between; align-items: center; padding-top: 30px; color: rgba(148, 163, 184, 0.5); /* 더 연한 그레이 */ font-size: 0.8rem;}
.legal-links {display: flex; gap: 20px;}
.legal-links a:hover { color: var(--white); }

/* Location Section */
.im-location-dark { background: var(--dark); padding: 120px 24px; color: #fff; }
.location-wrapper { max-width: var(--max-width); margin: 0 auto; display: flex; gap: 60px; align-items: flex-start; }
.location-info { flex: 1; text-align: left; }
.location-info h2 { font-size: 42px; font-weight: 800; margin-bottom: 20px; }
.location-info h2 span { color: var(--primary); }
.addr-text { font-size: 18px; color: #94a3b8; margin-bottom: 30px; }
.map-btns { display: flex; gap: 12px; margin-bottom: 50px; }
.map-btn { padding: 12px 24px; border-radius: 50px; font-size: 14px; font-weight: 600; background: var(--glass); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid var(--glass-border); color: #fff; transition: 0.3s; }
.map-btn:hover { background: rgba(255,255,255,0.1); border-color: rgba(138,153,255,0.4); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(138,153,255,0.15); }
.info-table { width: 100%; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 40px; }
.loc-row { display: flex; margin-bottom: 30px; align-items: flex-start; }
.info-label { width: 110px; font-size: 18px; font-weight: 700; color: var(--primary); }
.info-content { flex: 1; }
.tel-main { font-size: 24px; font-weight: 800; }
.tel-sub { font-size: 30px; font-weight: 800; display: flex; align-items: center; gap: 12px; }
.emergency-tag { background: var(--primary); color: var(--dark); font-size: 12px; font-weight: 800; padding: 3px 10px; border-radius: 4px; }
.time-grid { display: grid; grid-template-columns: 85px 1fr; gap: 12px; font-size: 17px; color: #94a3b8; }
.time-grid span:nth-child(odd) { color: #fff; font-weight: 600; }
.location-map { flex: 1.2; }
.map-image-link { display: block; width: 100%; height: 550px; border-radius: 30px; overflow: hidden; position: relative; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5); border: 1px solid rgba(255,255,255,0.05); }
.map-image-link img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s ease; }
.map-image-link::after { content: "지도로 길찾기 ↗"; position: absolute; inset: 0; background: rgba(138,153,255,0.2); display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 800; opacity: 0; transition: 0.3s; }
.map-image-link:hover img { transform: scale(1.05); }
.map-image-link:hover::after { opacity: 1; }
.reveal { opacity: 0; transform: translateY(50px); animation: fadeIn 1s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.location-map.reveal { animation-delay: 0.2s; }
@keyframes fadeIn { to { opacity: 1; transform: translateY(0); } }
@media (max-width: 900px) { .location-wrapper { flex-direction: column; gap: 50px; } .location-map { width: 100%; } .map-image-link { height: 380px; } .location-info h2 { font-size: 32px; text-align: center; } .map-btns { justify-content: center; } }

/* Contact Form */
.im-form-container { background: var(--dark); padding: 120px 24px; display: flex; flex-direction: column; align-items: center; position: relative; overflow: hidden; }
.im-form-container::before { content: ''; position: absolute; width: 500px; height: 500px; background: radial-gradient(circle, rgba(124,58,237,0.25) 0%, transparent 70%); top: 20%; right: -200px; filter: blur(100px); pointer-events: none; }
.im-form-container::after { content: ''; position: absolute; width: 400px; height: 400px; background: radial-gradient(circle, rgba(138,153,255,0.2) 0%, transparent 70%); bottom: 10%; left: -150px; filter: blur(100px); pointer-events: none; }
.faq-header { text-align: center; margin-bottom: 60px; width: 100%; }
.faq-header .tag { color: var(--primary); font-weight: 700; font-size: 14px; letter-spacing: 2px; display: block; margin-bottom: 15px; }
.faq-header h2 { font-size: clamp(24px, 4vw, 36px); font-weight: 800; line-height: 1.4; }
.faq-header h2 span { color: var(--primary); }
.im-form-wrapper { max-width: 850px; width: 100%; background: var(--glass); backdrop-filter: blur(30px); -webkit-backdrop-filter: blur(30px); padding: 50px; border-radius: 30px; box-shadow: 0 25px 50px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.1); border: 1px solid var(--glass-border); position: relative; overflow: hidden; }
.im-form-wrapper::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 40%; background: var(--glass-shine); pointer-events: none; }
.im-form-header { text-align: center; margin-bottom: 40px; }
.im-form-header h2 { font-size: 28px; margin-bottom: 10px; font-weight: 700; }
.im-form-header p { color: var(--primary); font-weight: 600; font-size: 14px; }
.im-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; }
.im-input-group { display: flex; flex-direction: column; gap: 10px; }
.im-input-group.full { grid-column: span 2; }
.im-input-group label { color: #94a3b8; font-size: 14px; font-weight: 600; }
.im-input-group label span { color: #ff6b6b; }
.im-field { background: #0d1117; border: 1px solid #30363d; border-radius: 12px; padding: 15px; color: #fff; font-size: 15px; outline: none; transition: 0.3s; }
.im-field:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(138,153,255,0.1); }
.im-check-group { display: flex; flex-wrap: wrap; gap: 15px; margin-top: 5px; }
.im-check-item { display: flex; align-items: center; gap: 8px; color: #cbd5e1; font-size: 14px; cursor: pointer; transition: 0.2s; }
.im-check-item:hover { color: #fff; }
.im-privacy-policy { margin-top: 10px; padding: 20px; background: #0d1117; border-radius: 15px; border: 1px solid #30363d; }
.im-privacy-policy span { font-size: 12px; color: #64748b; line-height: 1.5; display: block; margin-top: 8px; }
.im-submit-btn { grid-column: span 2; background: var(--primary); color: #fff; border: none; padding: 20px; border-radius: 15px; font-size: 18px; font-weight: 800; cursor: pointer; margin-top: 15px; transition: 0.3s; }
.im-submit-btn:hover { background: #707fff; transform: translateY(-3px); box-shadow: 0 10px 20px rgba(138,153,255,0.3); }
.im-submit-btn:disabled { background: #4a5568; cursor: not-allowed; }
.im-form-wrapper.reveal { animation-delay: 0.2s; }
@media (max-width: 768px) { .im-form-grid { grid-template-columns: 1fr; } .im-input-group.full, .im-submit-btn { grid-column: span 1; } .im-form-wrapper { padding: 30px 20px; } }

/* Process Section */
.im-process-modern { background: var(--dark); padding: 120px 24px; text-align: center; }
.im-process-header { margin-bottom: 100px; }
.im-process-header h2 { font-size: clamp(30px, 5vw, 42px); font-weight: 800; line-height: 1.4; }
.im-process-header h2 span { color: var(--primary); }
.modern-flow { display: flex; justify-content: center; align-items: flex-start; max-width: var(--max-width); margin: 0 auto; }
.modern-step { flex: 1; position: relative; padding: 0 20px; }
.step-visual { position: relative; display: flex; align-items: center; justify-content: center; margin-bottom: 40px; }
.step-dot { width: 16px; height: 16px; background: #30363d; border-radius: 50%; z-index: 3; transition: 0.4s; }
.step-line { position: absolute; top: 50%; left: 50%; width: 100%; height: 1px; background: rgba(255,255,255,0.1); z-index: 1; }
.modern-step:last-child .step-line { display: none; }
.modern-info .step-num { font-size: 48px; font-weight: 900; line-height: 1; margin-bottom: 20px; background: linear-gradient(180deg, rgba(138,153,255,0.2) 0%, rgba(138,153,255,0) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; transition: 0.4s; }
.modern-info h3 { font-size: 20px; font-weight: 700; margin-bottom: 15px; }
.modern-info p { font-size: 14px; color: #94a3b8; line-height: 1.6; word-break: keep-all; }
.modern-step:hover .step-dot { background: var(--primary); box-shadow: 0 0 15px var(--primary); transform: scale(1.3); }
.modern-step:hover .step-num { -webkit-text-fill-color: var(--primary); transform: translateY(-5px); }
.modern-step:hover .step-line { background: linear-gradient(to right, var(--primary), rgba(138,153,255,0.1)); }
@media (max-width: 1024px) { .modern-flow { flex-direction: column; align-items: center; gap: 60px; } .modern-step { width: 100%; max-width: 400px; padding: 0; } .step-line { width: 1px; height: 60px; top: 100%; left: 50%; } .step-visual { margin-bottom: 20px; } }

/* Worry Section */
.im-ceo-worry { background: var(--dark); padding: 120px 24px; text-align: center; }
.worry-header { margin-bottom: 80px; }
.worry-header .tag { color: var(--primary); font-weight: 700; font-size: 14px; letter-spacing: 2px; display: block; margin-bottom: 15px; }
.worry-header h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 800; line-height: 1.4; }
.worry-header h2 span { color: var(--primary); }
.worry-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; max-width: var(--max-width); margin: 0 auto; }
.worry-card { background: var(--glass); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid var(--glass-border); border-radius: 30px; padding: 50px 30px; transition: 0.4s; position: relative; text-align: left; overflow: hidden; }
.worry-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 50%; background: var(--glass-shine); pointer-events: none; }
.worry-card:hover { transform: translateY(-10px); border-color: rgba(138,153,255,0.4); box-shadow: 0 20px 50px rgba(138,153,255,0.15), inset 0 1px 0 rgba(255,255,255,0.1); }
.worry-num { font-size: 60px; font-weight: 900; color: var(--primary); opacity: 0.1; position: absolute; top: 20px; right: 30px; }
.worry-card h3 { font-size: 22px; font-weight: 800; margin-bottom: 25px; line-height: 1.5; word-break: keep-all; }
.worry-card p { font-size: 16px; color: var(--gray); line-height: 1.7; word-break: keep-all; }
.worry-footer { margin-top: 80px; font-size: 20px; font-weight: 700; color: var(--primary); }
.worry-card.reveal:nth-child(2) { animation-delay: 0.15s; }
.worry-card.reveal:nth-child(3) { animation-delay: 0.3s; }
@media (max-width: 900px) { .worry-grid { grid-template-columns: 1fr; } .worry-card { padding: 40px 25px; } }

/* Service Section */
.im-service-section { background: var(--dark); padding: 120px 24px; text-align: center; }
.im-service-header { margin-bottom: 60px; }
.im-service-header .sub-title { color: var(--primary); font-weight: 700; font-size: 14px; letter-spacing: 2px; display: block; margin-bottom: 15px; }
.im-service-header h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 800; line-height: 1.4; }
.im-service-header h2 span { background: linear-gradient(120deg, var(--primary), #4e67ff); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.im-service-header p { color: var(--gray); margin-top: 20px; font-size: 18px; line-height: 1.6; }
.im-service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; max-width: var(--max-width); margin: 0 auto; }
.im-service-card { background: var(--glass); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid var(--glass-border); border-radius: 30px; overflow: hidden; transition: 0.4s; text-align: left; display: flex; flex-direction: column; }
.im-service-card:hover { transform: translateY(-10px); border-color: rgba(138,153,255,0.4); box-shadow: 0 20px 50px rgba(138,153,255,0.15), inset 0 1px 0 rgba(255,255,255,0.1); }
.im-service-img-wrap { width: 100%; aspect-ratio: 16/9; overflow: hidden; background: var(--dark); }
.im-service-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.im-service-card:hover .im-service-img-wrap img { transform: scale(1.1); }
.im-service-info { padding: 35px; flex-grow: 1; display: flex; flex-direction: column; }
.im-service-info h3 { font-size: 22px; font-weight: 700; margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.im-service-info h3 span { color: var(--primary); font-size: 15px; font-weight: 500; }
.im-service-info p { color: var(--gray); font-size: 15px; line-height: 1.6; margin-bottom: 25px; flex-grow: 1; }
.im-card-btn-group { display: flex; gap: 10px; }
.im-card-btn { display: inline-flex; align-items: center; gap: 8px; color: var(--dark-light); font-weight: 700; font-size: 14px; padding: 12px 24px; border-radius: 50px; background: #fff; border: 1px solid #fff; transition: 0.3s; }
.im-card-btn:hover { background: var(--primary); color: #fff; border-color: var(--primary); box-shadow: 0 8px 15px rgba(138,153,255,0.3); }
.im-card-btn-outline { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.3); }
.im-card-btn-outline:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.im-service-card.reveal:nth-child(2) { animation-delay: 0.1s; }
.im-service-card.reveal:nth-child(3) { animation-delay: 0.2s; }
.im-service-card.reveal:nth-child(4) { animation-delay: 0.3s; }
@media (max-width: 850px) { .im-service-grid { grid-template-columns: 1fr; } }

/* Portfolio Section */
.im-portfolio-section { background: var(--dark); padding: 120px 24px; text-align: center; position: relative; overflow: hidden; }
.im-portfolio-section::before { content: ''; position: absolute; width: 450px; height: 450px; background: radial-gradient(circle, rgba(78,103,255,0.2) 0%, transparent 70%); bottom: -100px; right: 10%; filter: blur(100px); pointer-events: none; }
.im-portfolio-header { margin-bottom: 80px; }
.im-portfolio-header .tag { color: var(--primary); font-weight: 700; font-size: 14px; letter-spacing: 2px; display: block; margin-bottom: 15px; }
.im-portfolio-header h2 { font-size: clamp(32px, 5vw, 42px); font-weight: 800; margin-bottom: 20px; }
.im-portfolio-header h2 span { color: var(--primary); }
.im-portfolio-header p { font-size: 18px; color: var(--gray); }
.im-service-flow { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: var(--max-width); margin: 0 auto; }
.service-card { background: var(--glass); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid var(--glass-border); border-radius: 30px; padding: 40px 24px; min-height: 220px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; transition: 0.4s; position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 50%; background: var(--glass-shine); pointer-events: none; }
.service-card:hover { transform: translateY(-8px); border-color: rgba(138,153,255,0.4); box-shadow: 0 20px 40px rgba(138,153,255,0.2); }
.service-card:hover .service-img img { transform: scale(1.1); }
.service-img { width: 80px; height: 80px; border-radius: 16px; overflow: hidden; margin-bottom: 20px; }
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: 0.4s; }
.service-card h3 { font-size: 20px; font-weight: 700; line-height: 1.4; margin-bottom: 10px; color: rgba(255,255,255,0.95); }
.service-card p { font-size: 14px; color: var(--gray); }
.im-portfolio-btns { display: flex; justify-content: center; gap: 16px; margin-top: 80px; flex-wrap: wrap; }
.im-portfolio-btn { display: inline-block; padding: 18px 48px; background: var(--primary); color: #fff; font-weight: 700; font-size: 16px; border-radius: 50px; transition: 0.3s; }
.im-portfolio-btn:hover { transform: translateY(-3px); box-shadow: 0 15px 30px rgba(138,153,255,0.3); }
.im-portfolio-btn-outline { background: transparent; border: 1px solid var(--glass-border); }
.im-portfolio-btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--primary); }
@media (max-width: 900px) { .im-service-flow { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .im-service-flow { grid-template-columns: 1fr; } .service-card { min-height: auto; } }

/* Shorts Section */
.im-shorts-section { background: var(--dark); padding: 120px 24px; text-align: center; }
.im-shorts-header { margin-bottom: 60px; }
.im-shorts-header .tag { color: var(--primary); font-weight: 700; font-size: 14px; letter-spacing: 2px; display: block; margin-bottom: 15px; }
.im-shorts-header h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 800; margin-bottom: 20px; }
.im-shorts-header h2 span { color: var(--primary); }
.im-shorts-header p { font-size: 18px; color: var(--gray); }
.im-shorts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; max-width: var(--max-width); margin: 0 auto; }
.im-shorts-card { background: var(--glass); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid var(--glass-border); border-radius: 30px; overflow: hidden; transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1); }
.im-shorts-card:hover { transform: translateY(-12px) scale(1.02); border-color: rgba(138,153,255,0.4); box-shadow: 0 25px 50px rgba(138,153,255,0.2), inset 0 1px 0 rgba(255,255,255,0.1); }
.shorts-video { position: relative; width: 100%; padding-top: 177.77%; overflow: hidden; }
.shorts-video iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; transition: 0.5s; }
.im-shorts-card:hover .shorts-video iframe { transform: scale(1.05); }
.shorts-info { padding: 28px; text-align: left; }
.shorts-title { font-size: 18px; font-weight: 700; line-height: 1.4; margin-bottom: 12px; display: block; transition: 0.3s; }
.im-shorts-card:hover .shorts-title { color: var(--primary); }
.shorts-hashtags { font-size: 14px; color: var(--gray); letter-spacing: 0.5px; }
.im-shorts-card.reveal:nth-child(2) { animation-delay: 0.15s; }
.im-shorts-card.reveal:nth-child(3) { animation-delay: 0.3s; }
@media (max-width: 768px) { .im-shorts-grid { grid-template-columns: 1fr; max-width: 400px; } }

/* Scroll Reveal Animation */
.reveal { opacity: 0; transform: translateY(60px); transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-60px); transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(60px); transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-scale { opacity: 0; transform: scale(0.9); transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-scale.visible { opacity: 1; transform: scale(1); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* IT Consulting Section */
.it-consulting-section {
    background: var(--dark);
    padding: 180px 0;
}

.it-consulting-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.it-consulting-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.8;
    color: var(--white);
    margin-bottom: 20px;
    opacity: 1;
}

.it-consulting-description {
    font-size: clamp(16px, 1.5vw, 18px);
    font-weight: 400;
    line-height: 1.8;
    color: var(--white);
    margin-bottom: 48px;
    opacity: 0.9;
}

/* IT Buttons */
.it-consulting-buttons {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.it-btn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    min-width: 220px;
    min-height: 60px;
    padding: 0 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgb(36, 33, 36);
    border-radius: 100px;
    transition: all 200ms ease;
    cursor: pointer;
    text-decoration: none;
}

.it-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.it-btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    max-width: 44px;
    min-height: 44px;
    max-height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 100px;
}

.it-btn-icon img {
    width: 24px;
    height: 24px;
}

.it-btn span {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    line-height: 1.8;
    flex: 1;
    text-align: left;
}

.it-btn-consult:hover {
    background: rgba(255, 255, 255, 0.08);
}

.it-btn-download {
    transition: background 500ms ease;
}

.it-btn-download:hover {
    background: rgba(255, 255, 255, 0.08);
}

/* 반응형 */
@media (max-width: 768px) {
    .it-consulting-section {
        padding: 120px 0;
    }
    
    .it-consulting-buttons {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    
    .it-btn {
        width: 100%;
        max-width: 320px;
    }
}


/* Partners Section */
.im-partners { background: var(--dark); padding: 120px 0; overflow: hidden; position: relative; }
.im-partners::before { content: ""; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 600px; height: 300px; background: radial-gradient(circle, rgba(138,153,255,0.1) 0%, transparent 70%); pointer-events: none; }
.partners-header { text-align: center; margin-bottom: 60px; position: relative; z-index: 3; }
.partners-header .tag { display: inline-block; padding: 6px 16px; background: rgba(138,153,255,0.1); border: 1px solid rgba(138,153,255,0.2); border-radius: 100px; color: var(--primary); font-size: 13px; font-weight: 700; letter-spacing: 1px; margin-bottom: 20px; }
.partners-header h2 { color: var(--white); font-size: clamp(26px, 4vw, 36px); font-weight: 800; }
.slider-container { position: relative; display: flex; flex-direction: column; gap: 30px; padding: 40px 0; border-top: 1px solid rgba(255,255,255,0.03); border-bottom: 1px solid rgba(255,255,255,0.03); }
.slider-container::before, .slider-container::after { content: ""; position: absolute; top: 0; width: 20%; height: 100%; z-index: 2; pointer-events: none; }
.slider-container::before { left: 0; background: linear-gradient(to right, var(--dark) 10%, transparent); }
.slider-container::after { right: 0; background: linear-gradient(to left, var(--dark) 10%, transparent); }
.logo-track { display: flex; gap: 80px; width: max-content; }
.track-left { animation: scrollL 40s linear infinite; }
.track-right { animation: scrollR 40s linear infinite; }
.logo-item { flex: 0 0 160px; }
.logo-item img { width: 100%; filter: brightness(0) invert(1) opacity(0.4); transition: 0.3s; }
.logo-item:hover img { filter: brightness(0) invert(1) opacity(1); transform: scale(1.1); }
@keyframes scrollL { to { transform: translateX(-50%); } }
@keyframes scrollR { from { transform: translateX(-50%); } to { transform: translateX(0); } }
@media (max-width: 768px) { .logo-track { gap: 50px; } .logo-item { flex: 0 0 120px; } }

/* Floating Banner */
.floating-banner { position: fixed; top: 140px; right: 40px; width: 140px; padding: 16px; border-radius: 12px; background: #fff; box-shadow: 0 4px 12px rgba(0,0,0,0.15); text-align: center; z-index: 9999; }
.floating-banner img { width: 100%; border-radius: 8px; margin-bottom: 15px; }
.floating-banner h3 { margin: 0; font-size: 18px; font-weight: 600; color: #000; }
.floating-banner p { margin-top: 8px; font-size: 14px; color: #555; }
@media (max-width: 900px) { .floating-banner { display: none; } }

/* About Section */
.im-about-section { background: var(--dark); padding: 120px 24px; position: relative; overflow: hidden; }
.im-about-section::before { content: ''; position: absolute; width: 400px; height: 400px; background: radial-gradient(circle, rgba(138,153,255,0.3) 0%, transparent 70%); top: 50%; left: -100px; transform: translateY(-50%); filter: blur(80px); pointer-events: none; }
.im-about-wrapper { max-width: var(--max-width); margin: 0 auto; display: flex; gap: 80px; align-items: stretch; }
.im-about-content { flex: 1.2; }
.im-about-content .tag { color: var(--primary); font-weight: 700; font-size: 14px; letter-spacing: 2px; display: block; margin-bottom: 15px; }
.im-about-content h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 800; line-height: 1.4; margin-bottom: 30px; }
.im-about-content h2 span { color: var(--primary); }
.im-about-desc { font-size: 17px; color: var(--gray); line-height: 1.8; margin-bottom: 40px; }
.im-about-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.im-about-list li { font-size: 16px; color: var(--white); display: flex; align-items: center; gap: 12px; }
.im-about-list li strong { color: var(--primary); font-weight: 700; min-width: 80px; }
.im-about-visual { flex: 1; display: grid; grid-template-columns: repeat(2, 1fr); grid-template-rows: 1fr 1fr; gap: 20px; }
.about-stat-card { background: linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.6)), url('https://via.placeholder.com/300x200') center/cover; border: 1px solid var(--glass-border); border-radius: 24px; padding: 40px 30px; text-align: center; transition: 0.4s; display: flex; flex-direction: column; justify-content: center; }
.about-stat-card:nth-child(1) { background: linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.6)), url('/images/partnership.jpg') center/cover; }
.about-stat-card:nth-child(2) { background: linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.6)), url('/images/bestshot.jpg') center/cover; }
.about-stat-card:nth-child(3) { grid-column: span 2; background: linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.6)), url('/images/14years.jpg') center/cover; }
.about-stat-card:hover { transform: translateY(-8px); border-color: rgba(138,153,255,0.4); box-shadow: 0 20px 40px rgba(138,153,255,0.15); }
.about-stat-card:hover .stat-num { transform: scale(1.1); }
.about-stat-card:hover .stat-label { letter-spacing: 2px; }
.stat-num { display: block; font-size: 48px; font-weight: 900; color: var(--primary); margin-bottom: 8px; transition: 0.3s; }
.stat-label { font-size: 15px; color: var(--gray); transition: 0.3s; }
@media (max-width: 900px) { .im-about-wrapper { flex-direction: column; gap: 50px; } .im-about-content { text-align: center; } .im-about-list { align-items: center; } .im-about-visual { width: 100%; max-width: 400px; } }

/* About 섹션 버튼 그룹 */
.about-button-group {
    display: flex;
    gap: 32px;
    margin-top: 48px;
    flex-wrap: wrap;
}

.about-btn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    min-width: 220px;
    min-height: 60px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    transition: all 300ms ease;
    cursor: pointer;
    text-decoration: none;
}

.about-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.about-btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    max-width: 44px;
    min-height: 44px;
    max-height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    flex-shrink: 0;
}

.about-btn-icon img {
    width: 24px;
    height: 24px;
}

.about-btn-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.about-btn span {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    line-height: 1.5;
    white-space: nowrap;
}

/* 상담 버튼 (왼쪽, 어두운 스타일) */
.about-btn-consult {
    background: rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.15);
}

.about-btn-consult:hover {
    background: rgba(0, 0, 0, 0.5);
}

/* 다운로드 버튼 (오른쪽, 보라색 스타일) */
.about-btn-download {
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
    border-color: #7c3aed;
}

.about-btn-download:hover {
    background: linear-gradient(135deg, #6d28d9 0%, #9333ea 100%);
    box-shadow: 0 8px 32px rgba(124, 58, 237, 0.5);
}

/* 반응형 */
@media (max-width: 768px) {
    .about-button-group {
        flex-direction: column;
        gap: 16px;
        align-items: stretch;
    }
    
    .about-btn {
        width: 100%;
    }
}

/* Press Section */
.im-press-section { padding: 160px 5% 100px; min-height: 100vh; }
.press-header { text-align: center; margin-bottom: 60px; }
.press-header h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 800; }
.press-header h2 span { color: var(--primary); }
.press-content { max-width: var(--max-width); margin: 0 auto; }