* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
    transition: all 0.3s ease;
}

/* 스크롤바 스타일 */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #ffd700;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ffed4e;
}

/* 사이드바 스타일 */
.sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 280px;
    height: 100vh;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: white;
    padding: 20px;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: 2px 0 20px rgba(0,0,0,0.1);
}

.logo {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
}

.logo h2 {
    font-size: 32px;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 5px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.logo p {
    font-size: 10px;
    color: #ccc;
    letter-spacing: 2px;
    font-weight: 300;
}

.nav-menu {
    list-style: none;
}

.nav-item {
    margin-bottom: 15px;
}

.nav-title {
    display: block;
    font-weight: 600;
    font-size: 13px;
    color: #ffd700;
    margin-bottom: 8px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sub-menu {
    list-style: none;
    margin-left: 15px;
}

.sub-menu li {
    margin-bottom: 5px;
}

.nav-link {
    display: block;
    color: #ccc;
    text-decoration: none;
    padding: 10px 15px;
    font-size: 13px;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 215, 0, 0.05));
    color: #ffd700;
    transform: translateX(8px);
}

.nav-link.active {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #1a1a2e;
    font-weight: 600;
}

.contact-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    font-size: 10px;
    color: #888;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.social-links {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.social-links a {
    display: inline-block;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: #ffd700;
    transform: translateY(-2px);
}

/* 메인 컨텐츠 스타일 */
.main-content {
    margin-left: 280px;
    min-height: 100vh;
}

.content-section {
    display: none;
    padding: 40px;
    min-height: 100vh;
    animation: fadeIn 0.5s ease-in;
}

.content-section.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.breadcrumb {
    font-size: 12px;
    color: #666;
    margin-bottom: 20px;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #1a1a2e;
    border-bottom: 3px solid #ffd700;
    padding-bottom: 15px;
    position: relative;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #ff6b6b, #ffd700);
    border-radius: 2px;
}

/* 히어로 섹션 */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 15px;
    margin-bottom: 50px;
    overflow: hidden;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    padding: 80px 60px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 26px;
    margin-bottom: 30px;
    opacity: 0.95;
    font-weight: 300;
}

.hero-description {
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 18px;
    line-height: 1.8;
    opacity: 0.9;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    padding: 40px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 36px;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 14px;
    opacity: 0.8;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary, .btn-download {
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #1a1a2e;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.8);
}

.btn-secondary:hover {
    background-color: white;
    color: #1a1a2e;
    transform: translateY(-3px);
}

.btn-download {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    color: white;
    border: none;
}

.btn-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(79, 172, 254, 0.4);
}

/* 서비스 미리보기 */
.services-preview {
    margin-bottom: 50px;
}

.services-preview h2 {
    text-align: center;
    margin-bottom: 50px;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    border-color: #ffd700;
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a2e;
}

.service-card p {
    color: #666;
    line-height: 1.7;
}

/* 회사 소개 */
.company-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.intro-text h3 {
    font-size: 28px;
    margin-bottom: 25px;
    color: #1a1a2e;
}

.company-values {
    margin: 30px 0;
}

.value-item {
    margin-bottom: 25px;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.value-item h4 {
    color: #1a1a2e;
    margin-bottom: 10px;
    font-size: 18px;
}

.company-strengths {
    margin-top: 30px;
    padding: 25px;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-radius: 8px;
    border-left: 4px solid #ffd700;
}

.company-strengths h4 {
    color: #1a1a2e;
    margin-bottom: 15px;
    font-size: 18px;
}

.company-strengths ul {
    list-style: none;
}

.company-strengths li {
    margin-bottom: 8px;
    padding-left: 25px;
    position: relative;
    color: #555;
}

.company-strengths li:before {
    content: "✨";
    position: absolute;
    left: 0;
    font-size: 16px;
}

.placeholder-image {
    height: 400px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.placeholder-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.2)"/></pattern></defs><rect width="200" height="200" fill="url(%23dots)"/></svg>');
}

.image-content {
    position: relative;
    z-index: 2;
}

.image-content h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.image-content p {
    font-size: 16px;
    opacity: 0.9;
}

/* 타임라인 */
.timeline {
    position: relative;
    padding-left: 40px;
    margin-top: 30px;
}

.timeline:before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(135deg, #ffd700, #ff6b6b);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 50px;
    background: white;
    padding: 30px 30px 30px 80px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.timeline-item:hover {
    transform: translateX(10px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.15);
}

.timeline-item:before {
    content: '';
    position: absolute;
    left: -48px;
    top: 35px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffd700, #ff6b6b);
    box-shadow: 0 0 0 4px white, 0 0 0 8px #f8f9fa;
}

.year {
    font-weight: 700;
    color: #1a1a2e;
    font-size: 20px;
    margin-bottom: 10px;
    position: absolute;
    left: -80px;
    top: 30px;
    width: 60px;
    text-align: center;
}

.timeline-item h4 {
    color: #1a1a2e;
    margin-bottom: 10px;
    font-size: 18px;
}

/* 뉴스 */
.news-list {
    display: grid;
    gap: 25px;
}

.news-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    border-left-color: #ffd700;
}

.news-item.important {
    border-left-color: #ff6b6b;
    background: linear-gradient(135deg, #fff9e6, #ffffff);
    position: relative;
}

.news-item.important::before {
    content: '중요';
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ff6b6b, #ff4757);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
}

.news-item.important h3 {
    color: #e67e22;
    font-weight: 600;
}

.news-item.important:hover {
    box-shadow: 0 8px 30px rgba(255, 107, 107, 0.2);
}

.news-date {
    color: #888;
    font-size: 12px;
    margin-bottom: 15px;
    font-weight: 500;
}

.news-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #1a1a2e;
    line-height: 1.4;
}

/* 채용 정보 */
.recruit-content {
    max-width: 1000px;
}

.recruit-intro {
    text-align: center;
    margin-bottom: 50px;
    padding: 40px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius: 12px;
}

.recruit-intro h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.job-positions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.job-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.job-card h4 {
    font-size: 22px;
    color: #1a1a2e;
    margin-bottom: 15px;
}

.job-requirements {
    margin-top: 20px;
}

.job-requirements span {
    display: inline-block;
    background: #f8f9fa;
    color: #555;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    margin-right: 8px;
    margin-bottom: 8px;
    border: 1px solid #e9ecef;
}

/* 솔루션 그리드 */
.solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.solution-item {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.solution-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.solution-icon {
    font-size: 48px;
    margin-bottom: 20px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.solution-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a1a2e;
}

/* 컨설팅 프로세스 */
.consulting-process {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.process-step {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #1a1a2e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-step h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #1a1a2e;
}

/* 자동화 혜택 */
.automation-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.benefit-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.benefit-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a1a2e;
}

/* 연락처 */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 30px;
}

.contact-info-detail {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.contact-info-detail h3 {
    font-size: 24px;
    margin-bottom: 30px;
    color: #1a1a2e;
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 2px solid #f8f9fa;
}

.contact-details {
    space-y: 20px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f1f1f1;
}

.info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.info-icon {
    font-size: 20px;
    margin-right: 15px;
    margin-top: 5px;
    min-width: 30px;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.contact-form h3 {
    font-size: 24px;
    margin-bottom: 30px;
    color: #1a1a2e;
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 2px solid #f8f9fa;
}

.form-group {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: #ffd700;
    background-color: white;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

/* FAQ */
.faq-list {
    max-width: 800px;
}

.faq-item {
    background: white;
    margin-bottom: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.faq-item h3 {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    padding: 20px 30px;
    margin: 0;
    font-size: 18px;
    color: #1a1a2e;
    border-bottom: 2px solid #f1f1f1;
}

.faq-item p {
    padding: 20px 30px;
    margin: 0;
    line-height: 1.7;
    color: #555;
}

/* 기타 섹션들 */
.products-coming-soon,
.portfolio-preview,
.download-section,
.partners-content,
.investors-content {
    text-align: center;
    padding: 60px 40px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-top: 30px;
}

.service-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.service-type {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.service-type:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.service-type h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #1a1a2e;
}

.partner-benefits,
.investment-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.benefit-item,
.highlight-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-item:hover,
.highlight-item:hover {
    background: #ffd700;
    transform: translateY(-3px);
}

.highlight-item h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #1a1a2e;
}

/* 다크모드 지원 */
body.dark-mode {
    background-color: #1a1a2e;
    color: #ffffff;
}

body.dark-mode .content-section {
    background-color: #16213e;
}

body.dark-mode .news-item,
body.dark-mode .service-card,
body.dark-mode .solution-item,
body.dark-mode .job-card,
body.dark-mode .benefit-card,
body.dark-mode .process-step,
body.dark-mode .contact-info-detail,
body.dark-mode .contact-form,
body.dark-mode .faq-item,
body.dark-mode .timeline-item,
body.dark-mode .value-item {
    background-color: #0f1419;
    color: #ffffff;
}

body.dark-mode .news-item.important {
    background: linear-gradient(135deg, #2d2416, #1a1a2e);
}

body.dark-mode input,
body.dark-mode textarea,
body.dark-mode select {
    background-color: #16213e;
    color: white;
    border-color: #333;
}

/* 반응형 디자인 */
@media (max-width: 1200px) {
    .sidebar {
        width: 250px;
    }
    
    .main-content {
        margin-left: 250px;
    }
    
    .hero-content {
        padding: 60px 40px;
    }
    
    .hero-section h1 {
        font-size: 42px;
    }
    
    .hero-stats {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .sidebar {
        width: 100%;
        height: auto;
        position: relative;
        border-radius: 0;
    }
    
    .main-content {
        margin-left: 0;
    }
    
    .content-section {
        padding: 20px;
    }
    
    .company-intro,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero-section h1 {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .hero-content {
        padding: 40px 20px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .service-cards,
    .solution-grid,
    .consulting-process,
    .automation-benefits {
        grid-template-columns: 1fr;
    }
    
    .timeline {
        padding-left: 20px;
    }
    
    .timeline-item {
        padding: 20px 20px 20px 40px;
    }
    
    .year {
        position: relative;
        left: 0;
        top: 0;
        width: auto;
        text-align: left;
        margin-bottom: 15px;
    }
    
    .contact-info {
        position: relative;
        margin-top: 30px;
        padding-top: 20px;
    }
}

@media (max-width: 480px) {
    .hero-section h1 {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .sidebar {
        padding: 15px;
    }
    
    .content-section {
        padding: 15px;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 12px 24px;
        font-size: 14px;
    }
}

/* 애니메이션 및 트랜지션 */
@keyframes slideInFromRight {
    from {
        transform: translateX(100px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes bounce {
    0%, 20%, 60%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    80% {
        transform: translateY(-5px);
    }
}

.hero-stats .stat-item {
    animation: slideInFromRight 0.6s ease-out;
}

.hero-stats .stat-item:nth-child(2) {
    animation-delay: 0.2s;
}

.hero-stats .stat-item:nth-child(3) {
    animation-delay: 0.4s;
}

.service-icon {
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    animation: bounce 1s;
}

/* 접근성 개선 */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* 포커스 스타일 */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid #ffd700;
    outline-offset: 2px;
}
