/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans KR', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Header Styles */
header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 9999; /* 더 높은 z-index */
}

.main-nav {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease-in-out;
}

/* 스크롤 시 메뉴바 숨김/표시 */
.main-nav.nav-hidden {
    transform: translateY(-100%);
}

.main-nav.nav-visible {
    transform: translateY(0);
}

/* 스크롤 시 메뉴바 배경색 변경 */
.main-nav.scrolled {
    background: rgba(30, 58, 138, 0.95); /* 푸른색 배경 */
    box-shadow: 0 4px 20px rgba(30, 58, 138, 0.3);
}

.main-nav.scrolled .nav-links a {
    color: white !important;
}

.main-nav.scrolled .nav-links a:hover {
    color: #ffd700 !important;
}

.main-nav.scrolled .brand-name .wow,
.main-nav.scrolled .brand-name .cell {
    color: white;
}

.main-nav.scrolled .tagline {
    color: #e0e7ff;
}

.main-nav.scrolled .house-icon {
    background: #ffd700;
}

.main-nav.scrolled .roof {
    border-bottom-color: #ff6b6b;
}

.nav-container {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 0.5rem 5% !important;
    min-height: 60px !important;
}

.logo {
    display: flex !important;
    align-items: center !important;
    position: relative !important;
    flex-shrink: 0 !important;
}

.logo-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    position: relative;
}

.house-icon {
    width: 100%;
    height: 100%;
    background: #1E3A8A;
    border-radius: 5px;
    position: relative;
}

.roof {
    position: absolute;
    top: -5px;
    left: 0;
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 15px solid #F44336;
}

.window {
    position: absolute;
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 1px;
}

.window-1 {
    top: 8px;
    left: 5px;
}

.window-2 {
    top: 8px;
    left: 17px;
}

.door {
    position: absolute;
    top: 18px;
    left: 12px;
    width: 6px;
    height: 12px;
    background: #8D6E63;
    border-radius: 1px;
}

.eye {
    position: absolute;
    width: 3px;
    height: 3px;
    background: #333;
    border-radius: 50%;
}

.eye-1 {
    top: 5px;
    left: 8px;
}

.eye-2 {
    top: 5px;
    left: 20px;
}

.mouth {
    position: absolute;
    top: 12px;
    left: 5px;
    width: 20px;
    height: 2px;
    background: #333;
    border-radius: 1px;
}

.chimney {
    position: absolute;
    top: 0px;
    left: -5px;
    width: 4px;
    height: 15px;
    background: #1E3A8A;
    border-radius: 2px;
}

.smoke {
    position: absolute;
    top: -8px;
    left: -3px;
    width: 4px;
    height: 4px;
    background: #1E3A8A;
    border-radius: 50%;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    display: flex;
}

.brand-name .wow {
    font-size: 20px;
    font-weight: bold;
    color: #1E3A8A;
}

.brand-name .cell {
    font-size: 20px;
    font-weight: bold;
    color: #F44336;
}

.tagline {
    font-size: 10px;
    color: #666;
}

.logo-link {
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* 기존 로고 h1 스타일 제거 - 새로운 구조 사용 */

.nav-links {
    display: flex !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    align-items: center !important;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
}

.nav-links a:hover {
    color: #007bff;
}

.nav-links a.active {
    color: #007bff;
    font-weight: 600;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    padding-top: 80px;
}

@media (max-width: 768px) {
    .hero {
        padding-top: 70px;
    }
    
    /* 모바일에서 콘텐츠가 채팅 위젯에 가려지지 않도록 하단 패딩 추가 */
    .portfolio,
    .benefits,
    .contact,
    .faq,
    .inquiry-section,
    .services-page,
    .portfolio-page,
    .faq-page {
        padding-bottom: 80px;
    }
    
    /* 섹션별 추가 패딩 */
    .company-intro {
        padding-bottom: 100px !important;
        margin-bottom: 100px !important;
    }
    
    .testimonials {
        padding-bottom: 130px;
    }
    
    .newsletter {
        padding-bottom: 150px;
    }
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

.slide.active {
    opacity: 1;
}

.slide video,
.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: zoomEffect 20s infinite alternate;
}

@keyframes zoomEffect {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

.slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3),
        rgba(0, 0, 0, 0.5)
    );
    animation: gradientMotion 10s infinite alternate;
}

@keyframes gradientMotion {
    0% {
        background: linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.3),
            rgba(0, 0, 0, 0.5)
        );
    }
    100% {
        background: linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.5),
            rgba(0, 0, 0, 0.3)
        );
    }
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 1;
    width: 90%;
    max-width: 800px;
    animation: contentFade 1s ease-out;
}

@keyframes contentFade {
    from {
        opacity: 0;
        transform: translate(-50%, -40%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.slide-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease 0.3s;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.slide-content p {
    font-size: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease 0.5s;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.slide.active .slide-content h2,
.slide.active .slide-content p {
    opacity: 1;
    transform: translateY(0);
}

.slider-controls {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 2rem;
    z-index: 2;
}

.prev-slide,
.next-slide {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.prev-slide:hover,
.next-slide:hover {
    background: rgba(255, 255, 255, 0.4);
}

.slider-dots {
    display: flex;
    gap: 0.5rem;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dots .dot.active {
    background: white;
    transform: scale(1.2);
}

.social-links {
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 2;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    margin-left: 1rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: #007bff;
    transform: translateY(-3px);
}

/* Portfolio Section */
.portfolio {
    padding: 120px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.portfolio::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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    animation: gridMove 20s linear infinite;
}

.portfolio-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.portfolio-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
    animation: slideInFromBottom 1.2s ease-out 0.3s both;
}

.portfolio-subtitle {
    font-size: 1.5rem;
    color: rgba(255,255,255,0.9);
    font-weight: 300;
    animation: slideInFromBottom 1.2s ease-out 0.6s both;
}

.portfolio-slider-container {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding: 0;
    overflow: hidden; /* 한 번에 4개만 보이도록 제한 */
    padding-bottom: 50px;
}

.portfolio-slider {
    display: flex;
    gap: 0;
    transition: transform 0.5s ease;
    width: 100%;
    flex-wrap: nowrap;
}

.portfolio-slide {
    flex: 0 0 25%; /* 데스크탑에서 4개씩 보이도록 수정 */
    min-width: 25%;
    animation: fadeInUp 1s ease-out both;
    padding: 0 10px;
}

.portfolio-slide:nth-child(1) { animation-delay: 0.9s; }
.portfolio-slide:nth-child(2) { animation-delay: 1.2s; }
.portfolio-slide:nth-child(3) { animation-delay: 1.5s; }
.portfolio-slide:nth-child(4) { animation-delay: 1.8s; }
.portfolio-slide:nth-child(5) { animation-delay: 2.1s; }
.portfolio-slide:nth-child(6) { animation-delay: 2.4s; }

.portfolio-thumbnail {
    position: relative;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transition: all 0.4s ease;
    height: 600px; /* 높이 증가 */
    cursor: pointer;
}

.portfolio-thumbnail:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

.thumbnail-image {
    position: relative;
    overflow: hidden;
    height: 100%;
    width: 100%;
}

.thumbnail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.portfolio-thumbnail:hover .thumbnail-image img {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    backdrop-filter: blur(5px);
}

.portfolio-thumbnail:hover .portfolio-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: white;
    padding: 2rem;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.portfolio-thumbnail:hover .overlay-content {
    transform: translateY(0);
}

.overlay-content h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.overlay-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    opacity: 0.9;
}

.overlay-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.overlay-btn {
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    margin: 0 0.5rem;
}

.overlay-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.portfolio-controls {
    position: relative;
    margin-top: 30px;
    display: flex !important;
    justify-content: center;
    align-items: center;
    z-index: 10;
    padding: 20px 0;
    opacity: 1 !important;
    visibility: visible !important;
    min-height: 50px;
}

.portfolio-dots {
    display: flex !important;
    gap: 8px;
    align-items: center;
    opacity: 1 !important;
    visibility: visible !important;
    min-height: 20px;
    padding: 10px 0;
}

.portfolio-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    flex-shrink: 0;
}

.portfolio-dot.active {
    background: #fff;
    border-color: #fff;
    transform: scale(1.2);
}

.portfolio-dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
}

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

@media (max-width: 1200px) {
    .portfolio-slide {
        flex: 0 0 33.333%; /* 태블릿에서 3개씩 보이도록 */
        min-width: 33.333%;
    }
}

@media (max-width: 768px) {
    .portfolio-title {
        font-size: 2.5rem;
    }
    
    .portfolio-subtitle {
        font-size: 1.2rem;
    }
    
    .portfolio-slide {
        flex: 0 0 100%; /* 모바일에서 1개씩 보이도록 */
        min-width: 100%;
    }
    
    .portfolio-thumbnail {
        height: 400px;
    }
    
    .portfolio-controls {
        display: flex; /* 모바일에서도 컨트롤 표시 */
        margin-top: 20px;
    }
    
    .portfolio-dot {
        width: 10px;
        height: 10px;
    }
    
    .portfolio-slider-container {
        padding-bottom: 40px;
    }
    
    /* 모바일에서 슬라이더가 1개씩 보이도록 설정 */
    .portfolio-slider {
        gap: 0;
    }
    
    .portfolio-slide {
        padding: 0 5px;
    }
    
    /* Process Section Mobile */
    .process-section {
        padding: 80px 5% 3rem;
    }
    
    .process-title {
        font-size: 2.5rem;
    }
    
    .process-subtitle {
        font-size: 1.1rem;
    }
    
    .process-timeline {
        gap: 40px;
    }
    
    .process-step {
        flex-direction: column !important;
        text-align: center;
        gap: 20px;
    }
    
    .step-circle {
        width: 100px;
        height: 100px;
    }
    
    .step-icon {
        font-size: 2rem;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .step-connection {
        display: none;
    }
    
    .timeline-line {
        display: none;
    }
    
    .step-content {
        padding: 20px;
    }
    
    .step-title {
        font-size: 1.5rem;
    }
    
    .step-description {
        font-size: 1rem;
    }
    
    .step-features {
        justify-content: center;
    }
    
         .feature-tag {
         font-size: 0.8rem;
         padding: 6px 12px;
     }
     
     /* FAQ Section Mobile */
     .faq-section {
         padding: 80px 5% 3rem;
     }

     /* FAQ 요소들의 초기 상태 설정 (스크롤 애니메이션용) */
     .faq-title.scroll-animate-up,
     .faq-divider.scroll-animate-up,
     .faq-item.scroll-animate-up {
         opacity: 0;
         transform: translateY(30px);
         visibility: visible;
     }

     .faq-title.scroll-animate-up.animate,
     .faq-divider.scroll-animate-up.animate,
     .faq-item.scroll-animate-up.animate {
         opacity: 1;
         transform: translateY(0);
     }
     
     /* 제작 프로세스 섹션 애니메이션 최적화 */
     .process-step.scroll-animate-up {
         opacity: 0;
         transform: translateY(20px);
         transition: all 0.2s ease;
         will-change: opacity, transform;
     }
     
     .process-step.scroll-animate-up.animate {
         opacity: 1;
         transform: translateY(0);
     }
     
     /* 제작 프로세스 섹션 전체 최적화 */
     .process-section {
         will-change: auto;
     }
     
     .process-step {
         will-change: auto;
     }
     
     .faq-title {
         font-size: 2.2rem;
     }
     
     .faq-question {
         padding: 20px 25px;
     }
     
     .faq-question h3 {
         font-size: 1.1rem;
     }
     
     .faq-item.active .faq-answer {
         padding: 20px 25px;
     }
     
     .faq-answer p {
         font-size: 0.95rem;
     }
}

/* Benefits Section */
.benefits {
    background-color: #f8f9fa;
    padding: 5rem 5%;
}

.benefits h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.benefit-item i {
    font-size: 2.5rem;
    color: #007bff;
    margin-bottom: 1rem;
}

/* Contact Section */
.contact {
    text-align: center;
    padding: 5rem 5%;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('assets/images/ask.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    position: relative;
}

.contact-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/images/ask.jpg') center center;
    background-size: cover;
    filter: blur(8px);
    opacity: 0.3;
    z-index: -1;
}

.contact h2 {
    font-size: 2.2rem !important;
    margin-bottom: 1rem;
}

.contact p {
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #0056b3;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    padding: 3rem 5%;
}

@media (max-width: 768px) {
    footer {
        padding-bottom: 120px;
    }
}

@media (max-width: 480px) {
    footer {
        padding-bottom: 140px;
    }
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-info h3,
.business-hours h3 {
    margin-bottom: 1rem;
}

.address p {
    margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-nav {
        flex-direction: column;
        text-align: center;
    }

    .nav-links {
        margin-top: 1rem;
        flex-direction: column;
    }

    .nav-links li {
        margin: 0.5rem 0;
    }

    .slide-content h2 {
        font-size: 2rem;
    }

    .slide-content p {
        font-size: 1.2rem;
    }

    .slider-controls {
        bottom: 30px;
    }

    .social-links {
        bottom: 20px;
        right: 20px;
    }

    .social-links a {
        font-size: 1.2rem;
        margin-left: 0.8rem;
    }

    .portfolio-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* Loading Animation */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loader {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #007bff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #333;
    background: none;
    border: none;
    padding: 8px;
    margin: 0;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.menu-toggle:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

/* LS 증권 스타일 모바일 메뉴 */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    background: #000;
    width: 90%;
    max-width: 400px;
    height: auto;
    max-height: 85vh;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.mobile-menu-overlay.active .mobile-menu-content {
    transform: scale(1);
}

/* 모바일 메뉴 헤더 */
.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 20px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-logo {
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-close:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* 30년 카피 문구 */
.mobile-menu-copy {
    padding: 15px 20px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-copy h2 {
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 8px;
    line-height: 1.3;
}

.mobile-menu-copy p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
}

/* 메뉴 목록 */
.mobile-menu-list {
    list-style: none;
    padding: 15px 0;
    margin: 0;
    flex: 1;
}

.mobile-menu-list li {
    margin: 0;
}

.mobile-menu-list a {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: white;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-menu-list a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.mobile-menu-list a:active {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateX(3px);
}

.mobile-menu-list i {
    margin-right: 12px;
    width: 18px;
    text-align: center;
    font-size: 1.1rem;
}

/* 구분선 */
.mobile-menu-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 15px 20px;
}

/* 솔루션 서비스 */
.mobile-solutions {
    padding: 0 20px 20px;
}



.solution-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.solution-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 20px;
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.solution-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.solution-btn:hover::before {
    left: 100%;
}

.solution-primary {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
}

.solution-secondary {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.solution-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.solution-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}





.solution-title {
    font-size: 1rem;
    font-weight: bold;
    line-height: 1.3;
    color: white;
}





/* PC용 메뉴바 복구 */
@media (min-width: 769px) {
    .menu-toggle {
        display: none !important;
    }
    
    .nav-container {
        justify-content: space-between !important;
        flex-direction: row !important;
        align-items: center !important;
    }
    
    .logo {
        flex-shrink: 0 !important;
    }
    
    .nav-links {
        display: flex !important;
        position: static !important;
        width: auto !important;
        height: auto !important;
        background: none !important;
        flex-direction: row !important;
        padding: 0 !important;
        transform: none !important;
        left: auto !important;
        margin-left: 0 !important;
    }
    
    .nav-links li {
        margin: 0 0 0 2rem !important;
    }
    
    .nav-links a {
        padding: 0.5rem 1rem !important;
    }
    
    /* PC에서는 모바일 메뉴 숨김 */
    .mobile-menu-overlay {
        display: none !important;
    }
}

/* 추가 PC 강제 스타일 */
@media (min-width: 1024px) {
    .nav-container {
        justify-content: space-between !important;
        flex-direction: row !important;
    }
    
    .logo {
        flex-shrink: 0 !important;
    }
    
    .nav-links {
        display: flex !important;
        flex-direction: row !important;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    background-color: #007bff;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: #0056b3;
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 2rem auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    box-shadow: 0 0 0 2px #007bff;
}

/* Responsive Design Updates */
@media (max-width: 768px) {
    .nav-container {
        padding: 0.5rem 3%;
        min-height: 50px;
    }
    
    .logo {
        flex: 1;
        max-width: 200px;
    }
    
    .logo-content {
        gap: 5px;
    }
    
    .logo-icon {
        width: 30px;
        height: 30px;
    }
    
    .house-icon {
        transform: scale(0.8);
    }
    
    .brand-name .wow,
    .brand-name .cell {
        font-size: 16px;
    }
    
    .tagline {
        font-size: 8px;
    }
    
    .menu-toggle {
        display: block !important;
        margin-left: auto;
    }

    /* 기존 모바일 메뉴 숨김 (새로운 LS 스타일 메뉴 사용) */
    .nav-links {
        display: none !important;
    }

    .contact-form {
        margin: 2rem 1rem;
    }
}

/* Animation for Portfolio Items */
.portfolio-item {
    animation: fadeInUp 0.6s ease-out;
}

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

/* Hover Effects for Benefit Items */
.benefit-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Button Hover Animation */
.btn {
    position: relative;
    overflow: hidden;
}

.btn:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover:after {
    width: 300px;
    height: 300px;
}

/* Quick Contact Button */
.quick-contact {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 999;
}

.quick-contact-btn {
    display: flex;
    align-items: center;
    background-color: #007bff;
    color: white;
    padding: 1rem;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.quick-contact-btn i {
    font-size: 1.2rem;
    margin-right: 0.5rem;
}

.quick-contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Statistics Section */
.statistics {
    background-color: #f8f9fa;
    padding: 5rem 0;
}

.stat-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    padding: 0 5%;
}

.stat-item {
    text-align: center;
    padding: 2rem;
}

.stat-item i {
    font-size: 3rem;
    color: #007bff;
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 0.5rem;
}

/* Portfolio Filters */
.portfolio-filters {
    text-align: center;
    margin-bottom: 2rem;
}

.filter-btn {
    background: none;
    border: none;
    padding: 0.5rem 1.5rem;
    margin: 0 0.5rem;
    cursor: pointer;
    font-size: 1rem;
    color: #666;
    transition: all 0.3s ease;
    border-radius: 25px;
}

.filter-btn.active,
.filter-btn:hover {
    background-color: #007bff;
    color: white;
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 5%;
    background-color: #fff;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-item {
    opacity: 0;
    transition: opacity 0.5s ease;
    position: absolute;
    width: 100%;
}

.testimonial-item:first-child {
    opacity: 1;
    position: relative;
}

.testimonial-content {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    position: relative;
}

.testimonial-content i {
    color: #007bff;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 1.5rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 1rem;
}

.author-info h4 {
    margin: 0;
    color: #333;
}

.author-info p {
    margin: 0;
    color: #666;
}

.testimonial-dots {
    text-align: center;
    margin-top: 2rem;
}

.dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #ddd;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background: #007bff;
}

/* Newsletter Section */
.newsletter {
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('https://via.placeholder.com/1920x1080');
    background-size: cover;
    background-position: center;
    padding: 5rem 5%;
    color: white;
    text-align: center;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter h2 {
    margin-bottom: 1rem;
}

.newsletter p {
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
}

.newsletter-form .btn {
    white-space: nowrap;
}

/* Responsive Updates */
@media (max-width: 768px) {
    .quick-contact-btn span {
        display: none;
    }

    .quick-contact-btn i {
        margin: 0;
    }

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

    .filter-btn {
        margin: 0.25rem;
        padding: 0.5rem 1rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .stat-container {
        grid-template-columns: 1fr;
    }
    
    /* 작은 화면에서 더 많은 하단 패딩 */
    .portfolio,
    .benefits,
    .contact,
    .faq,
    .inquiry-section,
    .services-page,
    .portfolio-page,
    .faq-page {
        padding-bottom: 140px;
    }
    
    .company-intro {
        padding-bottom: 120px !important;
        margin-bottom: 120px !important;
    }
    
    .testimonials {
        padding-bottom: 150px;
    }
    
    .newsletter {
        padding-bottom: 170px;
    }
}

/* Floating Social Media Bar */
.social-bar {
    position: fixed;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 998;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: #007bff;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateX(5px);
    background: #0056b3;
}

/* Service Process Section */
.process {
    padding: 5rem 5%;
    background: #fff;
}

.process h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.process-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.process-item {
    text-align: center;
    padding: 2rem;
    position: relative;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.process-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.process-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: #007bff;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.process-item i {
    font-size: 2.5rem;
    color: #007bff;
    margin: 1rem 0;
}

/* FAQ Section */
.faq {
    padding: 5rem 5%;
    background: #f8f9fa;
}

.faq h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    background: white;
    transition: all 0.3s ease;
}

.faq-item.active {
    background: white;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
    border-radius: 15px 15px 0 0;
    border: 1px solid #e9ecef;
    margin-bottom: 0;
    box-sizing: border-box;
}

.faq-item.active .faq-question {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.faq-question:hover {
    background: rgba(102, 126, 234, 0.05);
}

.faq-question:hover h3 {
    color: #333 !important;
}

.faq-question:hover i {
    color: #667eea !important;
}

.faq-item.active .faq-question:hover {
    background: rgba(102, 126, 234, 0.1);
}

.faq-item.active .faq-question:hover h3 {
    color: #333333 !important;
}

.faq-item.active .faq-question:hover i {
    color: #667eea !important;
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin: 0;
    flex: 1;
    line-height: 1.4;
}

.faq-item.active .faq-question h3 {
    color: #ffffff;
}

.faq-question i {
    font-size: 1.2rem;
    color: #667eea;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-left: 20px;
}

.faq-item.active .faq-question i {
    color: #ffffff;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #f8f9fa;
    opacity: 0;
    padding: 0 30px;
    border-radius: 0 0 15px 15px;
    margin-top: 0;
    box-sizing: border-box;
    border: 1px solid #e9ecef;
    border-top: none;
}

.faq-item.active .faq-answer {
    max-height: none;
    padding: 25px 30px;
    opacity: 1;
    margin-top: 0;
    box-sizing: border-box;
}

.faq-answer p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

.faq-item.active .faq-answer p {
    color: #333;
    font-weight: 400;
}

/* Blog Preview Section */
.blog-preview {
    padding: 5rem 5%;
    background: white;
}

.blog-preview h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.blog-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-image {
    position: relative;
}

.blog-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-date {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #007bff;
    color: white;
    padding: 0.5rem;
    border-radius: 5px;
    text-align: center;
}

.blog-date .day {
    font-size: 1.5rem;
    font-weight: bold;
    display: block;
}

.blog-content {
    padding: 1.5rem;
}

.blog-content h3 {
    margin-bottom: 1rem;
}

.read-more {
    display: inline-flex;
    align-items: center;
    color: #007bff;
    text-decoration: none;
    margin-top: 1rem;
}

.read-more i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(5px);
}

/* Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    width: 350px;
    height: 500px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.chat-toggle {
    width: 60px;
    height: 60px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-toggle:hover {
    transform: scale(1.1);
}

.chat-panel {
    display: none;
    width: 350px;
    height: 500px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    margin-bottom: 10px;
    flex-direction: column;
}

.chat-widget.active .chat-panel {
    display: flex;
}

.chat-header {
    background: #007bff;
    color: white;
    padding: 1rem;
    border-radius: 10px 10px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header h3 {
    margin: 0;
    font-size: 1rem;
}

.chat-close {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 1.5rem;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-messages {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
    max-height: 300px;
    min-height: 200px;
}

.message {
    margin-bottom: 1rem;
    padding: 0.8rem;
    border-radius: 10px;
    max-width: 80%;
}

.message.bot {
    background: #f8f9fa;
    margin-right: auto;
}

.message.user {
    background: #007bff;
    color: white;
    margin-left: auto;
}

.message p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.chat-input {
    padding: 1rem;
    border-top: 1px solid #eee;
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.chat-input input {
    flex: 1;
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 0.9rem;
}

.chat-input input:focus {
    outline: none;
    border-color: #007bff;
}

.send-btn {
    background: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 0.5rem 0.8rem;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background 0.3s ease;
}

.send-btn:hover {
    background: #0056b3;
}

@media (max-width: 768px) {
    .chat-panel {
        width: 280px;
        height: 350px;
    }
    
    .chat-widget {
        bottom: 20px;
        right: 20px;
    }
}

/* Responsive Updates */
@media (max-width: 768px) {
    .social-bar {
        display: none;
    }

    .process-container {
        grid-template-columns: 1fr;
    }

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

    .chat-body {
        width: calc(100vw - 60px);
        height: calc(100vh - 200px);
    }
}

.slide iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw; /* 16:9 Aspect Ratio */
    min-height: 100vh;
    min-width: 177.77vh; /* 16:9 Aspect Ratio */
    transform: translate(-50%, -50%);
    pointer-events: none;
}

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

.main-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUp 1s ease 0.3s forwards;
}

.sub-title {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 2rem;
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUp 1s ease 0.6s forwards;
}

.description {
    font-size: 1.5rem;
    line-height: 1.8;
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUp 1s ease 0.9s forwards;
}

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

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

/* Scroll Animation Classes */
.scroll-animate {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.scroll-animate.animate {
    opacity: 1;
    transform: translateY(0);
}

.scroll-animate-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.scroll-animate-left.animate {
    opacity: 1;
    transform: translateX(0);
}

.scroll-animate-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}

.scroll-animate-right.animate {
    opacity: 1;
    transform: translateX(0);
}

.scroll-animate-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.scroll-animate-up.animate {
    opacity: 1;
    transform: translateY(0);
}

.scroll-animate-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s ease;
}

.scroll-animate-scale.animate {
    opacity: 1;
    transform: scale(1);
}

/* 지연 애니메이션을 위한 스타일 */
[data-delay="0.1"] { transition-delay: 0.1s; }
[data-delay="0.2"] { transition-delay: 0.2s; }
[data-delay="0.3"] { transition-delay: 0.3s; }
[data-delay="0.4"] { transition-delay: 0.4s; }
[data-delay="0.5"] { transition-delay: 0.5s; }

/* 회사정보 섹션 스크롤 애니메이션 수정 */
.company-intro-new .scroll-animate-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.company-intro-new .scroll-animate-up.animate {
    opacity: 1;
    transform: translateY(0);
}

.intro-left-new.scroll-animate-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.intro-left-new.scroll-animate-up.animate {
    opacity: 1;
    transform: translateY(0);
}

.brand-section-new.scroll-animate-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.brand-section-new.scroll-animate-up.animate {
    opacity: 1;
    transform: translateY(0);
}

.philosophy-title-new.scroll-animate-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.philosophy-title-new.scroll-animate-up.animate {
    opacity: 1;
    transform: translateY(0);
}

.philosophy-text-new.scroll-animate-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.philosophy-text-new.scroll-animate-up.animate {
    opacity: 1;
    transform: translateY(0);
}

.philosophy-description-new.scroll-animate-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.philosophy-description-new.scroll-animate-up.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Company Introduction Section */
.company-intro {
    position: relative;
    padding: 120px 5% 5rem;
    background: #f8f9fa;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.intro-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #ffffff 0%, #f8f9fa 50%, #e9ecef 100%);
    z-index: 1;
}

.intro-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 2rem 0;
}

.intro-left {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease;
}

.intro-right {
    color: #2c3e50;
    padding: 2rem;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease;
}

/* Modern Animation */
.modern-animation {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Tech Cards */
.tech-cards {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.tech-card {
    width: 120px;
    height: 160px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: cardFloat 4s ease-in-out infinite;
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.card-1 { animation-delay: 0s; }
.card-2 { animation-delay: 1.3s; }
.card-3 { animation-delay: 2.6s; }

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    animation: iconPulse 2s ease-in-out infinite;
}

.card-content {
    width: 100%;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: #e9ecef;
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 3px;
    animation: progressFill 3s ease-in-out infinite;
}

/* Central Element */
.central-element {
    position: absolute;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-circle {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: mainPulse 3s ease-in-out infinite;
    box-shadow: 0 0 30px rgba(102, 126, 234, 0.3);
}

.inner-circle {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: innerRotate 4s linear infinite;
}

.core-icon {
    font-size: 2rem;
    animation: coreGlow 2s ease-in-out infinite;
}

/* Orbit Rings */
.orbit-ring {
    position: absolute;
    border: 2px solid rgba(102, 126, 234, 0.2);
    border-radius: 50%;
    animation: orbitRotate 8s linear infinite;
}

.ring-1 {
    width: 160px;
    height: 160px;
    animation-duration: 8s;
}

.ring-2 {
    width: 200px;
    height: 200px;
    animation-duration: 12s;
    animation-direction: reverse;
}

.ring-3 {
    width: 240px;
    height: 240px;
    animation-duration: 16s;
}

.orbit-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #667eea;
    border-radius: 50%;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
    animation: dotGlow 2s ease-in-out infinite;
}

/* Data Flow */
.data-flow {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.data-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, #667eea, transparent);
    animation: dataFlow 3s ease-in-out infinite;
}

.line-1 {
    width: 100px;
    top: 30%;
    left: 20%;
    animation-delay: 0s;
}

.line-2 {
    width: 80px;
    top: 50%;
    right: 25%;
    animation-delay: 1s;
}

.line-3 {
    width: 120px;
    bottom: 40%;
    left: 30%;
    animation-delay: 2s;
}

/* Company Logo */
.company-logo {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 2rem;
}

.logo-symbol {
    width: 80px;
    height: 80px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: logoGlow 2s ease-in-out infinite;
}

.star-icon {
    font-size: 2.5rem;
    animation: starSpin 4s linear infinite;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #2c3e50;
}

.brand-subtitle {
    font-size: 1.2rem;
    color: #7f8c8d;
    margin: 0;
}

/* Company Philosophy */
.company-philosophy h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
    color: #2c3e50;
}

.highlight {
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: highlightGlow 3s ease-in-out infinite;
}

.philosophy-text {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.philosophy-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #7f8c8d;
}

/* Animations */
@keyframes cardFloat {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-15px) scale(1.05); }
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes progressFill {
    0% { width: 0%; }
    50% { width: 100%; }
    100% { width: 0%; }
}

@keyframes mainPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 30px rgba(102, 126, 234, 0.3); }
    50% { transform: scale(1.1); box-shadow: 0 0 50px rgba(102, 126, 234, 0.5); }
}

@keyframes innerRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

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

@keyframes orbitRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes dotGlow {
    0%, 100% { opacity: 0.6; transform: translateX(-50%) scale(1); }
    50% { opacity: 1; transform: translateX(-50%) scale(1.5); }
}

@keyframes dataFlow {
    0% { opacity: 0; transform: scaleX(0); }
    50% { opacity: 1; transform: scaleX(1); }
    100% { opacity: 0; transform: scaleX(0); }
}

@keyframes logoGlow {
    0%, 100% { box-shadow: 0 0 10px rgba(102, 126, 234, 0.3); }
    50% { box-shadow: 0 0 30px rgba(102, 126, 234, 0.6); }
}

@keyframes starSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Design for Company Intro */
@media (max-width: 1200px) {
    .intro-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .intro-left {
        height: 400px;
    }
    
    .tech-card {
        width: 100px;
        height: 140px;
    }
    
    .main-circle {
        width: 100px;
        height: 100px;
    }
    
    .inner-circle {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 768px) {
    .company-intro {
        padding: 80px 5% 3rem;
        min-height: auto;
    }
    
    .intro-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1rem 0;
    }
    
    .intro-left {
        height: 300px;
    }
    
    .tech-card {
        width: 80px;
        height: 120px;
    }
    
    .card-icon {
        font-size: 2rem;
    }
    
    .main-circle {
        width: 80px;
        height: 80px;
    }
    
    .inner-circle {
        width: 60px;
        height: 60px;
    }
    
    .core-icon {
        font-size: 1.5rem;
    }
    
    .orbit-ring {
        border-width: 1px;
    }
    
    .ring-1 { width: 120px; height: 120px; }
    .ring-2 { width: 150px; height: 150px; }
    .ring-3 { width: 180px; height: 180px; }
    
    .company-logo {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .logo-symbol {
        width: 60px;
        height: 60px;
    }
    
    .star-icon {
        font-size: 2rem;
    }
    
    .brand-name {
        font-size: 2rem;
    }
    
    .company-philosophy h2 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .philosophy-text {
        font-size: 1rem;
    }
    
    .philosophy-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .intro-left {
        height: 250px;
    }
    
    .tech-card {
        width: 70px;
        height: 100px;
    }
    
    .card-icon {
        font-size: 1.5rem;
    }
    
    .main-circle {
        width: 60px;
        height: 60px;
    }
    
    .inner-circle {
        width: 45px;
        height: 45px;
    }
    
    .core-icon {
        font-size: 1.2rem;
    }
    
    .ring-1 { width: 100px; height: 100px; }
    .ring-2 { width: 120px; height: 120px; }
    .ring-3 { width: 140px; height: 140px; }
    
    .data-line {
        height: 1px;
    }
    
    .company-philosophy h2 {
        font-size: 1.5rem;
    }
    
    .philosophy-text {
        font-size: 0.9rem;
    }
    
    .philosophy-description {
        font-size: 0.8rem;
    }
}

/* Philosophy Section */
.philosophy-section {
    position: relative;
    padding: 120px 5% 5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.philosophy-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.cloud {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    animation: cloudFloat 20s linear infinite;
}

.cloud::before,
.cloud::after {
    content: '';
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
}

.cloud-1 {
    width: 100px;
    height: 40px;
    top: 20%;
    left: -100px;
    animation-delay: 0s;
}

.cloud-1::before {
    width: 60px;
    height: 30px;
    top: -15px;
    left: 20px;
}

.cloud-1::after {
    width: 40px;
    height: 20px;
    top: -10px;
    left: 50px;
}

.cloud-2 {
    width: 80px;
    height: 30px;
    top: 40%;
    right: -80px;
    animation-delay: 5s;
    animation-direction: reverse;
}

.cloud-2::before {
    width: 50px;
    height: 25px;
    top: -12px;
    left: 15px;
}

.cloud-2::after {
    width: 30px;
    height: 15px;
    top: -8px;
    left: 40px;
}

.cloud-3 {
    width: 120px;
    height: 50px;
    top: 60%;
    left: -120px;
    animation-delay: 10s;
}

.cloud-3::before {
    width: 70px;
    height: 35px;
    top: -18px;
    left: 25px;
}

.cloud-3::after {
    width: 50px;
    height: 25px;
    top: -12px;
    left: 60px;
}

.cloud-4 {
    width: 90px;
    height: 35px;
    top: 80%;
    right: -90px;
    animation-delay: 15s;
    animation-direction: reverse;
}

.cloud-4::before {
    width: 55px;
    height: 28px;
    top: -14px;
    left: 18px;
}

.cloud-4::after {
    width: 35px;
    height: 18px;
    top: -9px;
    left: 45px;
}

.philosophy-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.philosophy-header {
    margin-bottom: 4rem;
}

.philosophy-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: titleGlow 3s ease-in-out infinite;
}

.philosophy-subtitle {
    font-size: 1.8rem;
    font-weight: 400;
    opacity: 0.9;
    animation: subtitleFloat 4s ease-in-out infinite;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 2rem;
}

.philosophy-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.philosophy-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.philosophy-item:hover::before {
    left: 100%;
}

.philosophy-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

.philosophy-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.icon-container {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: iconPulse 2s ease-in-out infinite;
}

.icon-container i {
    font-size: 2rem;
    color: white;
    animation: iconRotate 4s linear infinite;
}

.philosophy-item-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.philosophy-item-desc {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

/* Philosophy Animations */
@keyframes cloudFloat {
    0% { transform: translateX(-100px); }
    100% { transform: translateX(calc(100vw + 100px)); }
}

@keyframes titleGlow {
    0%, 100% { text-shadow: 0 0 10px rgba(255, 255, 255, 0.5); }
    50% { text-shadow: 0 0 30px rgba(255, 255, 255, 0.8); }
}

@keyframes subtitleFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes iconRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Design for Philosophy */
@media (max-width: 1024px) {
    .philosophy-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .philosophy-section {
        padding: 80px 5% 3rem;
    }
    
    .philosophy-title {
        font-size: 2rem;
    }
    
    .philosophy-subtitle {
        font-size: 1.4rem;
    }
    
    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .philosophy-item {
        padding: 2rem 1.5rem;
    }
    
    .icon-container {
        width: 60px;
        height: 60px;
    }
    
    .icon-container i {
        font-size: 1.5rem;
    }
    
    .philosophy-item-title {
        font-size: 1.3rem;
    }
    
    .philosophy-item-desc {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .philosophy-title {
        font-size: 1.8rem;
    }
    
    .philosophy-subtitle {
        font-size: 1.2rem;
    }
    
    .philosophy-item {
        padding: 1.5rem 1rem;
    }
    
    .icon-container {
        width: 50px;
        height: 50px;
    }
    
    .icon-container i {
        font-size: 1.2rem;
    }
    
    .philosophy-item-title {
        font-size: 1.1rem;
    }
    
    .philosophy-item-desc {
        font-size: 0.8rem;
    }
}

/* Features Section */
.features-section {
    position: relative;
    padding: 120px 5% 5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.features-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.particle {
    position: absolute;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 50%;
    animation: particleFloat 15s linear infinite;
    opacity: 0.1;
}

.particle-1 {
    width: 20px;
    height: 20px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.particle-2 {
    width: 15px;
    height: 15px;
    top: 20%;
    right: 15%;
    animation-delay: 2s;
    animation-direction: reverse;
}

.particle-3 {
    width: 25px;
    height: 25px;
    top: 60%;
    left: 5%;
    animation-delay: 4s;
}

.particle-4 {
    width: 18px;
    height: 18px;
    top: 70%;
    right: 10%;
    animation-delay: 6s;
    animation-direction: reverse;
}

.particle-5 {
    width: 22px;
    height: 22px;
    top: 40%;
    left: 80%;
    animation-delay: 8s;
}

.particle-6 {
    width: 16px;
    height: 16px;
    top: 80%;
    left: 70%;
    animation-delay: 10s;
    animation-direction: reverse;
}

.features-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.features-header {
    margin-bottom: 4rem;
}

.features-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2c3e50;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: titleGlow 3s ease-in-out infinite;
}

.features-subtitle {
    font-size: 1.8rem;
    font-weight: 400;
    color: #5a6c7d;
    animation: subtitleFloat 4s ease-in-out infinite;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 2rem;
}

.feature-item {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    border: 1px solid rgba(102, 126, 234, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    transition: left 0.6s ease;
}

.feature-item:hover::before {
    left: 100%;
}

.feature-item:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(102, 126, 234, 0.2);
    background: rgba(255, 255, 255, 0.95);
}

.feature-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: iconPulse 2s ease-in-out infinite;
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.icon-wrapper::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    z-index: -1;
    animation: iconGlow 2s ease-in-out infinite;
}

.icon-wrapper i {
    font-size: 2rem;
    color: white;
    animation: iconRotate 4s linear infinite;
}

.feature-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.feature-desc {
    font-size: 1rem;
    line-height: 1.6;
    color: #5a6c7d;
}

/* Features Animations */
@keyframes particleFloat {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
    100% { transform: translateY(0px) rotate(360deg); }
}

@keyframes iconGlow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

/* Responsive Design for Features */
@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .features-section {
        padding: 80px 5% 3rem;
    }
    
    .features-title {
        font-size: 2rem;
    }
    
    .features-subtitle {
        font-size: 1.4rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-item {
        padding: 2rem 1.5rem;
    }
    
    .icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .icon-wrapper i {
        font-size: 1.5rem;
    }
    
    .feature-title {
        font-size: 1.2rem;
    }
    
    .feature-desc {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .features-title {
        font-size: 1.8rem;
    }
    
    .features-subtitle {
        font-size: 1.2rem;
    }
    
    .feature-item {
        padding: 1.5rem 1rem;
    }
    
    .icon-wrapper {
        width: 50px;
        height: 50px;
    }
    
    .icon-wrapper i {
        font-size: 1.2rem;
    }
    
    .feature-title {
        font-size: 1.1rem;
    }
    
    .feature-desc {
        font-size: 0.8rem;
    }
}

/* Service Support Section */
.service-support-section {
    position: relative;
    padding: 120px 5% 5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Process Section */
.process-section {
    position: relative;
    padding: 120px 5% 5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.process-particle {
    position: absolute;
    font-size: 2.5rem;
    animation: processFloat 12s ease-in-out infinite;
    opacity: 0.15;
    filter: blur(1px);
}

.particle-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.particle-2 {
    top: 20%;
    right: 15%;
    animation-delay: 2s;
}

.particle-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

.particle-4 {
    top: 60%;
    right: 10%;
    animation-delay: 6s;
}

.particle-5 {
    bottom: 20%;
    right: 30%;
    animation-delay: 8s;
}

.particle-6 {
    top: 40%;
    left: 5%;
    animation-delay: 10s;
}

@keyframes processFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.15;
    }
    25% {
        transform: translateY(-20px) rotate(90deg);
        opacity: 0.25;
    }
    50% {
        transform: translateY(-40px) rotate(180deg);
        opacity: 0.35;
    }
    75% {
        transform: translateY(-20px) rotate(270deg);
        opacity: 0.25;
    }
}

.process-content {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}

.process-header {
    text-align: center;
    margin-bottom: 80px;
}

.process-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    animation: titleGlow 3s ease-in-out infinite;
}

.process-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    animation: subtitleFloat 4s ease-in-out infinite;
}

.process-timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.3) 100%);
    transform: translateX(-50%);
    z-index: 1;
}

.process-step {
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 10;
}

.process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.step-illustration {
    position: relative;
    flex-shrink: 0;
}

.step-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    animation: stepPulse 4s ease-in-out infinite;
    border: 4px solid rgba(255, 255, 255, 0.3);
}

.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.4);
    animation: numberBounce 2s ease-in-out infinite;
}

.step-icon {
    font-size: 2.5rem;
    color: #667eea;
    animation: iconRotate 6s linear infinite;
}

.step-connection {
    position: absolute;
    top: 50%;
    right: -30px;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
}

.process-step:nth-child(even) .step-connection {
    right: auto;
    left: -30px;
    flex-direction: row-reverse;
}

.connection-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.5) 100%);
    animation: lineFlow 3s ease-in-out infinite;
}

.connection-dot {
    width: 12px;
    height: 12px;
    background: #ffffff;
    border-radius: 50%;
    margin-left: 10px;
    animation: dotPulse 2s ease-in-out infinite;
}

.process-step:nth-child(even) .connection-dot {
    margin-left: 0;
    margin-right: 10px;
}

.step-content {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.step-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

.step-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.step-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.step-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.feature-tag {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    animation: tagFloat 4s ease-in-out infinite;
}

.feature-tag:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

@keyframes stepPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    }
}

@keyframes numberBounce {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@keyframes iconRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes lineFlow {
    0%, 100% {
        opacity: 0.7;
        transform: scaleX(1);
    }
    50% {
        opacity: 1;
        transform: scaleX(1.1);
    }
}

@keyframes dotPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.3);
        opacity: 1;
    }
}

@keyframes tagFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-3px);
    }
}

/* FAQ Section */
.faq-section {
    position: relative;
    padding: 120px 5% 5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    overflow: hidden;
    min-height: 100vh;
}

.faq-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.faq-particle {
    position: absolute;
    font-size: 2rem;
    animation: faqFloat 10s ease-in-out infinite;
    opacity: 0.1;
}

.particle-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.particle-2 {
    top: 25%;
    right: 15%;
    animation-delay: 2.5s;
}

.particle-3 {
    bottom: 35%;
    left: 20%;
    animation-delay: 5s;
}

.particle-4 {
    top: 70%;
    right: 10%;
    animation-delay: 7.5s;
}

@keyframes faqFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.1;
    }
    25% {
        transform: translateY(-15px) rotate(90deg);
        opacity: 0.2;
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
        opacity: 0.3;
    }
    75% {
        transform: translateY(-15px) rotate(270deg);
        opacity: 0.2;
    }
}

.faq-content {
    position: relative;
    z-index: 10;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-title {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.faq-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    margin: 0 auto;
    border-radius: 2px;
}

.faq-container {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    background: white;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active {
    background: white;
}

.faq-item.active .faq-question {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.faq-item.active .faq-question h3 {
    color: #ffffff !important;
}

.faq-item.active .faq-question i {
    color: #ffffff !important;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
    border-radius: 15px 15px 0 0;
    border: 1px solid #e9ecef;
    margin-bottom: 0;
    box-sizing: border-box;
}

.faq-question:hover {
    background: rgba(102, 126, 234, 0.05);
}

.faq-question:hover h3 {
    color: #333 !important;
}

.faq-question:hover i {
    color: #667eea !important;
}

.faq-item.active .faq-question:hover {
    background: rgba(255, 255, 255, 0.2);
}

.faq-item.active .faq-question:hover h3 {
    color: #333333 !important;
}

.faq-item.active .faq-question:hover i {
    color: #667eea !important;
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin: 0;
    flex: 1;
    line-height: 1.4;
}

.faq-question i {
    font-size: 1.2rem;
    color: #667eea;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-left: 20px;
    transform: rotate(0deg);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #f8f9fa;
    opacity: 0;
    padding: 0 30px;
    border-radius: 0 0 15px 15px;
    margin-top: 0;
    box-sizing: border-box;
    border: 1px solid #e9ecef;
    border-top: none;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 25px 30px;
    opacity: 1;
    margin-top: 0;
    box-sizing: border-box;
}

.faq-answer p {
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
    margin: 0;
    word-wrap: break-word;
    white-space: pre-line;
}

.faq-item.active .faq-answer p {
    color: #333;
    font-weight: 400;
}

/* FAQ 모바일 반응형 */
@media (max-width: 768px) {
    .faq-section {
        padding: 80px 5% 3rem;
    }
    
    .faq-title {
        font-size: 2rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-item.active .faq-answer {
        max-height: none;
        padding: 20px 25px;
    }
    
    .faq-answer p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 60px 5% 2rem;
    }
    
    .faq-title {
        font-size: 1.8rem;
    }
    
    .faq-question h3 {
        font-size: 0.9rem;
    }
    
    .faq-item.active .faq-answer {
        max-height: none;
        padding: 15px 20px;
    }
    
    .faq-answer p {
        font-size: 0.85rem;
    }
}

.support-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.floating-element {
    position: absolute;
    font-size: 2rem;
    animation: floatElement 8s ease-in-out infinite;
    opacity: 0.1;
}

.float-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.float-2 {
    top: 20%;
    right: 15%;
    animation-delay: 1.3s;
}

.float-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 2.6s;
}

.float-4 {
    bottom: 20%;
    right: 10%;
    animation-delay: 3.9s;
}

.float-5 {
    top: 50%;
    left: 5%;
    animation-delay: 5.2s;
}

.float-6 {
    top: 60%;
    right: 5%;
    animation-delay: 6.5s;
}

.support-content {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    width: 100%;
}

.support-header {
    text-align: center;
    margin-bottom: 4rem;
}

.support-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 3s ease-in-out infinite;
}

.support-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.support-item {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.support-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.support-item:hover::before {
    left: 100%;
}

.support-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.support-illustration {
    position: relative;
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Laptop Frame Styles */
.laptop-frame {
    position: relative;
    width: 300px;
    height: 200px;
    perspective: 1000px;
}

.laptop-screen {
    width: 100%;
    height: 80%;
    background: #2c3e50;
    border-radius: 10px 10px 0 0;
    position: relative;
    transform: rotateX(10deg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.laptop-base {
    width: 100%;
    height: 20%;
    background: #34495e;
    border-radius: 0 0 10px 10px;
    position: relative;
    transform: rotateX(-10deg);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Browser Window Styles */
.browser-window {
    width: 100%;
    height: 100%;
    background: #ffffff;
    border-radius: 10px 10px 0 0;
    overflow: hidden;
    position: relative;
}

.browser-header {
    height: 30px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    padding: 0 15px;
    border-bottom: 1px solid #e9ecef;
}

.browser-dots {
    display: flex;
    gap: 6px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    animation: dotPulse 2s ease-in-out infinite;
}

.dot.red {
    background: #ff5f56;
    animation-delay: 0s;
}

.dot.yellow {
    background: #ffbd2e;
    animation-delay: 0.3s;
}

.dot.green {
    background: #27ca3f;
    animation-delay: 0.6s;
}

.search-bar {
    flex: 1;
    height: 20px;
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    margin-left: 15px;
}

.browser-content {
    padding: 20px;
    position: relative;
}

.ui-element {
    margin-bottom: 15px;
    animation: elementFloat 3s ease-in-out infinite;
}

.card-element {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f8f9fa;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.card-icon {
    font-size: 1.2rem;
}

.card-lines .line {
    height: 4px;
    background: #6c757d;
    border-radius: 2px;
    margin-bottom: 4px;
}

.card-lines .line:first-child {
    width: 60px;
}

.card-lines .line:last-child {
    width: 40px;
}

.menu-element {
    background: #f8f9fa;
    padding: 8px;
    border-radius: 6px;
    width: 80px;
}

.menu-lines .line {
    height: 3px;
    background: #6c757d;
    border-radius: 2px;
    margin-bottom: 3px;
}

.text-element {
    background: #e3f2fd;
    padding: 8px 12px;
    border-radius: 6px;
    display: inline-block;
    border: 1px solid #bbdefb;
}

.text-content {
    font-weight: bold;
    color: #1976d2;
}

.cursor {
    position: absolute;
    width: 2px;
    height: 16px;
    background: #333;
    animation: cursorBlink 1s infinite;
    right: 30px;
    top: 50%;
}

/* Desk Lamp Styles */
.desk-lamp {
    position: absolute;
    right: -50px;
    top: -30px;
    z-index: 10;
}

.lamp-base {
    width: 40px;
    height: 8px;
    background: #34495e;
    border-radius: 4px;
    position: relative;
}

.lamp-arm {
    width: 4px;
    height: 60px;
    background: #34495e;
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.lamp-head {
    width: 30px;
    height: 20px;
    background: #34495e;
    border-radius: 15px 15px 0 0;
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.bulb {
    width: 12px;
    height: 12px;
    background: #ffeb3b;
    border-radius: 50%;
    animation: bulbGlow 2s ease-in-out infinite;
    box-shadow: 0 0 10px #ffeb3b;
}

/* Team Interface Styles */
.team-interface {
    position: relative;
    width: 350px;
    height: 250px;
}

.team-interface .browser-window {
    width: 100%;
    height: 100%;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.interface-elements {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    height: 60%;
}

.menu-icon {
    width: 20px;
    height: 20px;
    background: #6c757d;
    border-radius: 3px;
    position: relative;
}

.menu-icon::before,
.menu-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: #ffffff;
    top: 50%;
    transform: translateY(-50%);
}

.menu-icon::before {
    top: 30%;
}

.menu-icon::after {
    top: 70%;
}

.graph-container {
    flex: 1;
    height: 80px;
    margin: 0 20px;
    position: relative;
}

.graph-line {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    position: absolute;
    bottom: 0;
    animation: graphGrow 3s ease-in-out infinite;
}

.graph-points {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.point {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #667eea;
    border-radius: 50%;
    animation: pointGlow 2s ease-in-out infinite;
}

.point:nth-child(1) {
    left: 10%;
    bottom: 20%;
    animation-delay: 0s;
}

.point:nth-child(2) {
    left: 30%;
    bottom: 40%;
    animation-delay: 0.5s;
}

.point:nth-child(3) {
    left: 50%;
    bottom: 60%;
    animation-delay: 1s;
}

.point:nth-child(4) {
    left: 70%;
    bottom: 80%;
    animation-delay: 1.5s;
}

.user-icons {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.user-icon,
.check-icon,
.chat-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    animation: iconBounce 2s ease-in-out infinite;
}

.user-icon {
    background: #e3f2fd;
    color: #1976d2;
}

.check-icon {
    background: #e8f5e8;
    color: #4caf50;
}

.chat-icon {
    background: #fff3e0;
    color: #ff9800;
}

.code-laptop {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 30px;
    background: #2c3e50;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: laptopFloat 3s ease-in-out infinite;
}

.code-icon {
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: bold;
}

.team-members {
    position: absolute;
    top: -20px;
    left: -20px;
    width: calc(100% + 40px);
    height: calc(100% + 40px);
    pointer-events: none;
}

.member {
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    animation: memberFloat 4s ease-in-out infinite;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.member-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.member-2 {
    top: 20%;
    right: 15%;
    animation-delay: 0.6s;
}

.member-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 1.2s;
}

.member-4 {
    bottom: 20%;
    right: 10%;
    animation-delay: 1.8s;
}

.member-5 {
    top: 50%;
    left: 5%;
    animation-delay: 2.4s;
}

.member-6 {
    top: 60%;
    right: 5%;
    animation-delay: 3s;
}

.member-7 {
    top: 40%;
    left: 50%;
    animation-delay: 3.6s;
}

.support-text {
    text-align: center;
}

.support-text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
    animation: textGlow 3s ease-in-out infinite;
}

.support-text p {
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

/* Animations */
@keyframes floatElement {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

@keyframes titleGlow {
    0%, 100% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.2);
    }
}

@keyframes dotPulse {
    0%, 100% {
        opacity: 0.7;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

@keyframes elementFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-5px);
    }
}

@keyframes cursorBlink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

@keyframes bulbGlow {
    0%, 100% {
        box-shadow: 0 0 10px #ffeb3b;
    }
    50% {
        box-shadow: 0 0 20px #ffeb3b, 0 0 30px #ffeb3b;
    }
}

@keyframes graphGrow {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

@keyframes pointGlow {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 5px #667eea;
    }
    50% {
        transform: scale(1.2);
        box-shadow: 0 0 15px #667eea;
    }
}

@keyframes iconBounce {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-3px);
    }
}

@keyframes laptopFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-5px);
    }
}

@keyframes memberFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(5deg);
    }
}

@keyframes textGlow {
    0%, 100% {
        color: #2c3e50;
    }
    50% {
        color: #667eea;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .support-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .support-item {
        padding: 2rem;
    }
    
    .laptop-frame {
        width: 250px;
        height: 160px;
    }
    
    .team-interface {
        width: 300px;
        height: 200px;
    }
}

@media (max-width: 768px) {
    .service-support-section {
        padding: 80px 5% 3rem;
    }
    
    .support-title {
        font-size: 2rem;
    }
    
    .support-item {
        padding: 1.5rem;
    }
    
    .laptop-frame {
        width: 200px;
        height: 130px;
    }
    
    .team-interface {
        width: 250px;
        height: 160px;
    }
    
    .member {
        width: 25px;
        height: 25px;
        font-size: 0.8rem;
    }
    
    .support-text h3 {
        font-size: 1.3rem;
    }
    
    .support-text p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .support-title {
        font-size: 1.8rem;
    }
    
    .laptop-frame {
        width: 180px;
        height: 120px;
    }
    
    .team-interface {
        width: 220px;
        height: 140px;
    }
    
    .member {
        width: 20px;
        height: 20px;
        font-size: 0.7rem;
    }
    
    .support-text h3 {
        font-size: 1.2rem;
    }
    
    .support-text p {
        font-size: 0.85rem;
    }
}

.intro-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.pexels.com/photos/1181244/pexels-photo-1181244.jpeg') no-repeat center center;
    background-size: cover;
    opacity: 0.1;
    z-index: 1;
}

.intro-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
    min-height: auto;
    display: block;
    justify-content: flex-start;
}

.intro-text {
    text-align: left;
    margin-bottom: 4rem;
    opacity: 1 !important;
    transform: translateY(0) !important;
    animation: none !important;
    display: block !important;
    visibility: visible !important;
    position: relative !important;
    z-index: 1000 !important;
}

.intro-text h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.4;
    color: #333;
}

.intro-text p {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.intro-description {
    max-width: 800px;
}

.intro-description p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .company-intro {
        padding: 80px 3% 3rem;
        min-height: auto;
        overflow: visible;
    }
    
    .intro-content {
        padding: 1rem 0;
        display: block;
    }
    
    .intro-text h2 {
        font-size: 2.5rem !important;
        margin-bottom: 1rem !important;
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
    
    .intro-text p {
        font-size: 1.5rem !important;
        margin-bottom: 1.5rem !important;
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
    
    .intro-description p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
    
    .company-intro .intro-text {
        margin-bottom: 3rem !important;
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
    
    .company-intro .intro-description {
        margin-bottom: 4rem !important;
    }
    
    .company-intro .intro-features {
        margin-bottom: 2rem !important;
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
}

.intro-features {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    opacity: 1 !important;
    transform: translateY(0) !important;
    animation: none !important;
}

.feature-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #007bff;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.feature-item:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: #007bff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.feature-icon i {
    font-size: 1.5rem;
    color: white;
}

.feature-item:hover .feature-icon {
    transform: rotateY(180deg);
}

.feature-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
    line-height: 1.4;
}

.feature-item p {
    font-size: 0.9rem;
    color: #007bff;
    font-weight: 500;
}

@media (max-width: 1200px) {
    .intro-features {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .intro-text h2 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .intro-text h2 {
        font-size: 2.5rem;
    }
    
    .intro-text p {
        font-size: 1.5rem;
    }
    
    .intro-description p {
        font-size: 1.1rem;
    }
    
    .intro-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .feature-item {
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 480px) {
    .intro-features {
        grid-template-columns: 1fr;
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
    
    .intro-text h2 {
        font-size: 2rem !important;
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
    
    .intro-text p {
        font-size: 1.2rem !important;
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
    
    .intro-description p {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
}

/* Inquiry Page Styles */
.inquiry-section {
    padding: 120px 5% 5rem;
    background: #fff;
}

.inquiry-header {
    text-align: center;
    margin-bottom: 4rem;
    padding-top: 2rem;
}

.inquiry-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.inquiry-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.inquiry-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.inquiry-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.inquiry-form {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #1a237e;
    outline: none;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #666;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: #1a237e;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background: #283593;
}

.inquiry-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.info-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
}

.info-card p {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #666;
}

.info-card i {
    color: #1a237e;
    font-size: 1.2rem;
    width: 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .inquiry-content {
        grid-template-columns: 1fr;
    }
    
    .inquiry-info {
        flex-direction: row;
    }
}

@media (max-width: 768px) {
    .inquiry-header h2 {
        font-size: 2rem;
    }
    
    .inquiry-info {
        flex-direction: column;
    }
    
    .info-card {
        padding: 1.5rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.6rem;
    }
    
    .submit-btn {
        padding: 0.8rem;
    }
}

/* Services Page Specific Styles */
.services-page {
    padding-top: 150px; /* 헤더 높이 + 더 큰 여백 */
    min-height: 100vh;
    background: #f8f9fa;
    position: relative;
    z-index: 1; /* 헤더보다 낮은 z-index */
}

.services-page .services-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
    position: relative;
    z-index: 2;
}

.services-page .services-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 3;
}

.services-page .services-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

.services-page .services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-item {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-10px);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1a237e, #283593);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.service-icon i {
    font-size: 2.5rem;
    color: white;
}

.service-item h3 {
    font-size: 1.8rem;
    color: #1a237e;
    margin-bottom: 20px;
}

.service-item p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    color: #555;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.service-features li:before {
    content: "✓";
    color: #1a237e;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Inquiry Page Specific Styles */
.inquiry-section {
    padding-top: 150px; /* 헤더 높이 + 더 큰 여백 */
    min-height: 100vh;
    background: #f8f9fa;
    position: relative;
    z-index: 1; /* 헤더보다 낮은 z-index */
}

.inquiry-section .inquiry-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
    position: relative;
    z-index: 2;
}

.inquiry-section .inquiry-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 3;
}

.inquiry-section .inquiry-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

.inquiry-section .inquiry-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

@media (max-width: 1024px) {
    .services-page .services-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .services-page,
    .inquiry-section {
        padding-top: 130px; /* 모바일에서도 충분한 여백 */
    }
    
    .services-page .services-header h2,
    .inquiry-section .inquiry-header h2 {
        font-size: 2.5rem;
    }
    
    .services-page .services-header p,
    .inquiry-section .inquiry-header p {
        font-size: 1rem;
    }
    
    .services-page .services-container,
    .inquiry-section .inquiry-container {
        padding: 0 1rem;
    }
    
    .services-page .services-container {
        grid-template-columns: 1fr;
    }
    
    .service-item {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .services-page,
    .inquiry-section {
        padding-top: 120px; /* 작은 화면에서도 안전한 여백 */
    }
    
    .services-page .services-header h2,
    .inquiry-section .inquiry-header h2 {
        font-size: 2rem;
    }
} 

/* Load More Buttons */
.load-more-faqs,
.load-more-portfolios {
    text-align: center;
    margin-top: 2rem;
}

.load-more-faqs .btn,
.load-more-portfolios .btn {
    background: linear-gradient(45deg, #007bff, #0056b3);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.load-more-faqs .btn:hover,
.load-more-portfolios .btn:hover {
    background: linear-gradient(45deg, #0056b3, #004085);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
} 

/* Portfolio Page Specific Styles */
.portfolio-page {
    padding-top: 150px; /* 헤더 높이 + 더 큰 여백 */
    min-height: 100vh;
    background: #f8f9fa;
    position: relative;
    z-index: 1; /* 헤더보다 낮은 z-index */
}

.portfolio-page .portfolio-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
    position: relative;
    z-index: 2;
}

.portfolio-page .portfolio-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 3;
}

.portfolio-page .portfolio-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

.portfolio-page .portfolio-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.portfolio-page .portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .portfolio-page {
        padding-top: 130px; /* 모바일에서도 충분한 여백 */
    }
    
    .portfolio-page .portfolio-header h2 {
        font-size: 2.5rem;
    }
    
    .portfolio-page .portfolio-header p {
        font-size: 1rem;
    }
    
    .portfolio-page .portfolio-container {
        padding: 0 1rem;
    }
    
    .portfolio-page .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .portfolio-page {
        padding-top: 120px; /* 작은 화면에서도 안전한 여백 */
    }
    
    .portfolio-page .portfolio-header h2 {
        font-size: 2rem;
    }
} 

/* FAQ Page Styles */
.faq-page {
    padding-top: 150px; /* 헤더 높이 + 더 큰 여백 */
    min-height: 100vh;
    background: #f8f9fa;
    position: relative;
    z-index: 1; /* 헤더보다 낮은 z-index */
}

.faq-page .faq-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
    position: relative;
    z-index: 2;
}

.faq-page .faq-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 3;
}

.faq-page .faq-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

.faq-page .faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.faq-page .faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-page .faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.faq-page .faq-question {
    padding: 25px 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-page .faq-question:hover {
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
}

.faq-page .faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    flex: 1;
}

.faq-page .faq-question i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.faq-page .faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-page .faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: white;
}

.faq-page .faq-item.active .faq-answer {
    padding: 25px 30px;
    max-height: 500px;
}

.faq-page .faq-answer p {
    margin: 0;
    line-height: 1.8;
    color: #555;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .faq-page {
        padding-top: 130px; /* 모바일에서도 충분한 여백 */
    }
    
    .faq-page .faq-header h2 {
        font-size: 2.5rem;
    }
    
    .faq-page .faq-header p {
        font-size: 1rem;
    }
    
    .faq-page .faq-container {
        padding: 0 1rem;
    }
    
    .faq-page .faq-question {
        padding: 20px 25px;
    }
    
    .faq-page .faq-question h3 {
        font-size: 1.1rem;
    }
    
    .faq-page .faq-answer {
        padding: 0 25px;
    }
    
    .faq-page .faq-item.active .faq-answer {
        padding: 20px 25px;
    }
}

@media (max-width: 480px) {
    .faq-page {
        padding-top: 120px; /* 작은 화면에서도 안전한 여백 */
    }
    
    .faq-page .faq-header h2 {
        font-size: 2rem;
    }
    
    .faq-page .faq-question {
        padding: 15px 20px;
    }
    
    .faq-page .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-page .faq-answer {
        padding: 0 20px;
    }
    
    .faq-page .faq-item.active .faq-answer {
        padding: 15px 20px;
    }
} 

/* 채팅 위젯 스타일 */
.chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 350px;
    height: 500px;
    max-height: 500px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    z-index: 1000;
    overflow: hidden;
}

.chat-header {
    background: #007bff;
    color: white;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header h3 {
    margin: 0;
    font-size: 1.1rem;
}

.close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.welcome-screen {
    padding: 20px;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.welcome-screen h4 {
    margin: 0 0 10px 0;
    color: #333;
}

.welcome-screen p {
    margin: 0 0 20px 0;
    color: #666;
    font-size: 0.9rem;
}

.user-info-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.user-info-form input,
.user-info-form select {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 0.9rem;
}

.start-chat-btn {
    background: #007bff;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
}

.start-chat-btn:hover {
    background: #0056b3;
}

.chat-messages {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.message {
    margin-bottom: 10px;
    padding: 10px 15px;
    border-radius: 15px;
    max-width: 80%;
    word-wrap: break-word;
}

.message.user {
    background: #007bff;
    color: white;
    align-self: flex-end;
    margin-left: auto;
}

.message.admin {
    background: #f1f1f1;
    color: #333;
    align-self: flex-start;
}

.message.file {
    background: #e9ecef;
    border: 1px solid #dee2e6;
}

.file-message {
    display: flex;
    align-items: center;
    gap: 10px;
}

.file-icon {
    font-size: 1.2rem;
}

.file-info {
    flex: 1;
}

.file-name {
    font-weight: bold;
    margin-bottom: 2px;
}

.file-size {
    font-size: 0.8rem;
    color: #666;
}

.chat-input {
    padding: 15px;
    border-top: 1px solid #eee;
}

.input-container {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.input-container input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 0.9rem;
}

.input-container button {
    background: #007bff;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
}

.input-container button:hover {
    background: #0056b3;
}

.file-upload {
    display: flex;
    justify-content: center;
}

.file-btn {
    background: #f8f9fa;
    border: 1px solid #ddd;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    color: #666;
}

.file-btn:hover {
    background: #e9ecef;
}

/* 메시지 상태 표시 */
.message-status {
    font-size: 0.7rem;
    margin-top: 2px;
    opacity: 0.7;
}

.status-sending {
    color: #ffc107;
}

.status-sent {
    color: #28a745;
}

.status-read {
    color: #007bff;
}

/* 채팅 토글 버튼 */
.chat-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.chat-toggle:hover {
    background: #0056b3;
    transform: scale(1.1);
}

/* 채팅 숨김 상태 */
.chat-widget.hidden {
    display: none !important;
}

/* 채팅 위젯이 활성화되지 않았을 때 토글 버튼만 표시 */
.chat-widget.hidden .chat-toggle {
    display: flex !important;
}

/* 채팅 위젯이 활성화되었을 때 토글 버튼 숨김 */
.chat-widget:not(.hidden) .chat-toggle {
    display: none !important;
}

/* 독립적인 채팅 토글 버튼 (chat-widget 외부) */
#chatToggleBtn {
    display: flex !important;
}

/* 채팅 위젯이 활성화되었을 때 독립적인 토글 버튼도 숨김 */
.chat-widget:not(.hidden) ~ #chatToggleBtn,
.chat-widget.active ~ #chatToggleBtn {
    display: none !important;
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .chat-widget {
        width: 90%;
        height: 60%;
        max-height: 400px;
        bottom: 100px;
        right: 5%;
        left: 5%;
        z-index: 9990;
    }
    
    .chat-panel {
        width: 100%;
        height: 100%;
        max-height: 400px;
    }
    
    .chat-toggle {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        bottom: 20px;
        right: 20px;
        z-index: 9991;
    }
    
    /* 채팅 위젯이 활성화되었을 때 토글 버튼 숨김 */
    .chat-widget:not(.hidden) .chat-toggle {
        display: none !important;
    }
    
    /* 채팅 위젯이 숨겨져 있을 때만 토글 버튼 표시 */
    .chat-widget.hidden .chat-toggle {
        display: flex !important;
    }
    
    /* 독립적인 채팅 토글 버튼 */
    #chatToggleBtn {
        display: flex !important;
    }
    
    /* 채팅 위젯이 활성화되었을 때 독립적인 토글 버튼도 숨김 */
    .chat-widget:not(.hidden) ~ #chatToggleBtn,
    .chat-widget.active ~ #chatToggleBtn {
        display: none !important;
    }
}

/* ===== 새로운 회사소개 섹션 스타일 ===== */

/* Company Introduction Section - New Design */
.company-intro-new {
    position: relative;
    padding: 120px 5% 5rem;
    background: #f8f9fa;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.intro-bg-new {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #ffffff 0%, #f8f9fa 50%, #e9ecef 100%);
    z-index: 1;
}

/* Floating Particles */
.floating-particles-new {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.particle-new {
    position: absolute;
    font-size: 2rem;
    opacity: 0.6;
    animation: particleFloatNew 8s ease-in-out infinite;
}

.particle-1 { top: 15%; left: 15%; animation-delay: 0s; }
.particle-2 { top: 25%; right: 20%; animation-delay: 1.5s; }
.particle-3 { top: 65%; left: 10%; animation-delay: 3s; }
.particle-4 { top: 35%; right: 30%; animation-delay: 4.5s; }
.particle-5 { top: 75%; right: 15%; animation-delay: 6s; }
.particle-6 { top: 85%; left: 25%; animation-delay: 7.5s; }

@keyframes particleFloatNew {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
        opacity: 1;
    }
}

/* Geometric Shapes */
.geometric-shapes-new {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.shape-new {
    position: absolute;
    opacity: 0.3;
    animation: shapeFloatNew 6s ease-in-out infinite;
}

.shape-1 {
    top: 20%;
    right: 10%;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 50%;
    animation-delay: 0s;
}

.shape-2 {
    top: 60%;
    left: 5%;
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #f093fb, #f5576c);
    border-radius: 20px;
    animation-delay: 2s;
}

.shape-3 {
    top: 80%;
    right: 20%;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #4facfe, #00f2fe);
    border-radius: 10px;
    animation-delay: 4s;
}

@keyframes shapeFloatNew {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.6;
    }
}

/* Floating Elements */
.floating-elements-new {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.element-new {
    position: absolute;
    font-size: 1.5rem;
    opacity: 0.4;
    animation: elementFloatNew 10s ease-in-out infinite;
}

.element-1 { top: 30%; left: 20%; animation-delay: 0s; }
.element-2 { top: 50%; right: 25%; animation-delay: 3s; }
.element-3 { top: 70%; left: 70%; animation-delay: 6s; }
.element-4 { top: 20%; right: 60%; animation-delay: 9s; }

@keyframes elementFloatNew {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.4;
    }
    50% {
        transform: translateY(-25px) scale(1.2);
        opacity: 0.8;
    }
}

/* Content Layout */
.intro-content-new {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    width: 100%;
    gap: 4rem;
}

.intro-left-new {
    flex: 1;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.intro-left-new.animate {
    opacity: 1;
    transform: translateY(0);
}

.intro-left-new.scroll-animate-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.intro-left-new.scroll-animate-up.animate {
    opacity: 1;
    transform: translateY(0);
}

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

.intro-right-new {
    flex: 1;
    color: #2c3e50;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.intro-right-new.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Hero Animation */
.hero-animation-new {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.central-orb-new {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.orb-ring-new {
    position: absolute;
    border: 2px solid rgba(102, 126, 234, 0.3);
    border-radius: 50%;
    animation: orbRotateNew 10s linear infinite;
}

.ring-1 {
    width: 200px;
    height: 200px;
    animation-duration: 15s;
}

.ring-2 {
    width: 150px;
    height: 150px;
    animation-duration: 12s;
    animation-direction: reverse;
}

.ring-3 {
    width: 100px;
    height: 100px;
    animation-duration: 8s;
}

@keyframes orbRotateNew {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.orb-center-new {
    position: relative;
    z-index: 3;
}

.orb-core-new {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: orbPulseNew 3s ease-in-out infinite;
    box-shadow: 0 0 30px rgba(102, 126, 234, 0.5);
}

.core-glow-new {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.3) 0%, transparent 70%);
    animation: coreGlowNew 2s ease-in-out infinite;
}

@keyframes orbPulseNew {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

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

.orb-text-new {
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    animation: orbTextGlowNew 2s ease-in-out infinite;
}

@keyframes orbTextGlowNew {
    0%, 100% {
        text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
    }
    50% {
        text-shadow: 0 0 20px rgba(255, 255, 255, 1);
    }
}

/* Tech Grid */
.tech-grid-new {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.tech-card-new {
    width: 120px;
    height: 160px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: cardFloatNew 4s ease-in-out infinite;
    border: 1px solid rgba(102, 126, 234, 0.2);
    position: relative;
    overflow: hidden;
}

.tech-card-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.tech-card-new:hover::before {
    left: 100%;
}

.tech-card-new:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.card-icon-new {
    font-size: 2.5rem;
    margin-bottom: 15px;
    animation: iconBounceNew 2s ease-in-out infinite;
    color: #667eea;
}

.card-title-new {
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    color: #2c3e50;
}

.progress-ring-new {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid rgba(102, 126, 234, 0.2);
    position: relative;
    margin-top: 10px;
}

.progress-fill-new {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top: 3px solid #667eea;
    animation: progressFillNew 2s ease-in-out infinite;
}

@keyframes cardFloatNew {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes iconBounceNew {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@keyframes progressFillNew {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Brand Section */
.brand-section-new {
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.brand-section-new.animate {
    opacity: 1;
    transform: translateY(0);
}

.brand-section-new.scroll-animate-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.brand-section-new.scroll-animate-up.animate {
    opacity: 1;
    transform: translateY(0);
}

.brand-logo-new {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.logo-circle-new {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: logoPulseNew 3s ease-in-out infinite;
    box-shadow: 0 0 30px rgba(102, 126, 234, 0.3);
}

.logo-circle-new::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    animation: logoShineNew 2s ease-in-out infinite;
}

.logo-star-new {
    color: white;
    font-size: 2rem;
    animation: starRotateNew 4s linear infinite;
}

.brand-info-new {
    text-align: left;
}

.brand-name-new {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: brandGlowNew 3s ease-in-out infinite;
}

.brand-subtitle-new {
    font-size: 1.2rem;
    color: #7f8c8d;
    margin: 0;
}

@keyframes logoPulseNew {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes logoShineNew {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

@keyframes starRotateNew {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes brandGlowNew {
    0%, 100% {
        filter: drop-shadow(0 0 5px rgba(102, 126, 234, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 15px rgba(102, 126, 234, 0.6));
    }
}

/* Philosophy Section */
.philosophy-section-new {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.philosophy-section-new.animate {
    opacity: 1;
    transform: translateY(0);
}

.philosophy-section-new.scroll-animate-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.philosophy-section-new.scroll-animate-up.animate {
    opacity: 1;
    transform: translateY(0);
}

.philosophy-title-new {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
    color: #2c3e50;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.philosophy-title-new.animate {
    opacity: 1;
    transform: translateY(0);
}

.philosophy-title-new.scroll-animate-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.philosophy-title-new.scroll-animate-up.animate {
    opacity: 1;
    transform: translateY(0);
}

.philosophy-title-new .highlight-new {
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: highlightGlowNew 3s ease-in-out infinite;
}

.philosophy-content-new {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.philosophy-content-new.animate {
    opacity: 1;
    transform: translateY(0);
}

.philosophy-content-new.scroll-animate-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.philosophy-content-new.scroll-animate-up.animate {
    opacity: 1;
    transform: translateY(0);
}

.philosophy-text-new {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.philosophy-text-new.animate {
    opacity: 1;
    transform: translateY(0);
}

.philosophy-text-new.scroll-animate-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.philosophy-text-new.scroll-animate-up.animate {
    opacity: 1;
    transform: translateY(0);
}

.philosophy-description-new {
    font-size: 1rem;
    line-height: 1.6;
    color: #7f8c8d;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.philosophy-description-new.animate {
    opacity: 1;
    transform: translateY(0);
}

.philosophy-description-new.scroll-animate-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.philosophy-description-new.scroll-animate-up.animate {
    opacity: 1;
    transform: translateY(0);
}

@keyframes highlightGlowNew {
    0%, 100% {
        filter: drop-shadow(0 0 5px rgba(102, 126, 234, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 15px rgba(102, 126, 234, 0.6));
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .company-intro-new {
        padding: 80px 5% 3rem;
    }
    
    .intro-content-new {
        flex-direction: column;
        gap: 2rem;
    }
    
    .intro-left-new {
        order: 2;
    }
    
    .intro-right-new {
        order: 1;
    }
    
    .hero-animation-new {
        gap: 2rem;
    }
    
    .central-orb-new {
        width: 150px;
        height: 150px;
    }
    
    .tech-grid-new {
        gap: 1rem;
    }
    
    .brand-logo-new {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .logo-circle-new {
        width: 60px;
        height: 60px;
    }
    
    .logo-star-new {
        font-size: 1.5rem;
    }
    
    .brand-name-new {
        font-size: 2rem;
    }
    
    .philosophy-title-new {
        font-size: 2rem;
    }
    
    .philosophy-text-new {
        font-size: 1.1rem;
    }
    
    .philosophy-description-new {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .company-intro-new {
        padding: 60px 5% 2rem;
    }
    
    .intro-content-new {
        gap: 1.5rem;
    }
    
    .central-orb-new {
        width: 120px;
        height: 120px;
    }
    
    .orb-core-new {
        width: 60px;
        height: 60px;
    }
    
    .orb-text-new {
        font-size: 1rem;
    }
    
    .tech-grid-new {
        gap: 0.5rem;
    }
    
    .tech-card-new {
        width: 100px;
        height: 140px;
        padding: 15px;
    }
    
    .card-icon-new {
        font-size: 2rem;
    }
    
    .card-title-new {
        font-size: 0.8rem;
    }
    
    .brand-name-new {
        font-size: 1.8rem;
    }
    
    .brand-subtitle-new {
        font-size: 1rem;
    }
    
    .philosophy-title-new {
        font-size: 1.8rem;
    }
    
    .philosophy-text-new {
        font-size: 1rem;
    }
    
    .philosophy-description-new {
        font-size: 0.85rem;
    }
}

/* Portfolio Section Scroll Animation */
.portfolio-title.scroll-animate-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.portfolio-title.scroll-animate-up.animate {
    opacity: 1;
    transform: translateY(0);
}

.portfolio-subtitle.scroll-animate-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.portfolio-subtitle.scroll-animate-up.animate {
    opacity: 1;
    transform: translateY(0);
}

.portfolio-slide.scroll-animate-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.portfolio-slide.scroll-animate-up.animate {
    opacity: 1;
    transform: translateY(0);
}

/* 지금, 직원몰의 한계를 넘어보세요 Section Styles */
.experience-mall-section {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%), url('assets/images/coinmall2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.experience-mall-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"><circle cx="20" cy="20" r="1" fill="white" opacity="0.3"/><circle cx="80" cy="40" r="1" fill="white" opacity="0.3"/><circle cx="40" cy="80" r="1" fill="white" opacity="0.3"/><circle cx="90" cy="70" r="1" fill="white" opacity="0.3"/><circle cx="10" cy="60" r="1" fill="white" opacity="0.3"/></svg>') repeat;
    background-size: 100px 100px;
    animation: particleFloat 20s linear infinite;
}

@keyframes particleFloat {
    0% { transform: translateY(0); }
    100% { transform: translateY(-100px); }
}

@keyframes luxuriousGlow {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.3),
                    0 0 40px rgba(255, 215, 0, 0.2),
                    0 0 60px rgba(255, 215, 0, 0.1);
    }
    50% { 
        box-shadow: 0 0 30px rgba(255, 215, 0, 0.5),
                    0 0 60px rgba(255, 215, 0, 0.3),
                    0 0 90px rgba(255, 215, 0, 0.2);
    }
}

@keyframes sparkleEffect {
    0%, 100% { 
        opacity: 0.3; 
        transform: scale(1) rotate(0deg);
    }
    25% { 
        opacity: 1; 
        transform: scale(1.2) rotate(90deg);
    }
    50% { 
        opacity: 0.8; 
        transform: scale(1.1) rotate(180deg);
    }
    75% { 
        opacity: 1; 
        transform: scale(1.3) rotate(270deg);
    }
}

@keyframes premiumFloat {
    0%, 100% { 
        transform: translateY(0) rotate(0deg);
        filter: brightness(1) saturate(1);
    }
    25% { 
        transform: translateY(-15px) rotate(2deg);
        filter: brightness(1.1) saturate(1.2);
    }
    50% { 
        transform: translateY(-25px) rotate(0deg);
        filter: brightness(1.2) saturate(1.3);
    }
    75% { 
        transform: translateY(-15px) rotate(-2deg);
        filter: brightness(1.1) saturate(1.2);
    }
}

@keyframes goldenPulse {
    0%, 100% { 
        background: linear-gradient(45deg, #FFD700, #FFA500, #FFD700);
        transform: scale(1);
    }
    50% { 
        background: linear-gradient(45deg, #FFA500, #FFD700, #FFA500);
        transform: scale(1.05);
    }
}

.experience-title {
    text-align: center;
    margin-bottom: 4rem;
    color: #00FFFF;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.8),
                 0 0 40px rgba(0, 255, 255, 0.6),
                 0 0 60px rgba(0, 255, 255, 0.4);
    animation: luxuriousGlow 3s ease-in-out infinite;
    position: relative;
}

.experience-title::before {
    content: '✨';
    position: absolute;
    top: -20px;
    left: -30px;
    font-size: 2rem;
    animation: sparkleEffect 2s ease-in-out infinite;
}

.experience-title::after {
    content: '✨';
    position: absolute;
    top: -20px;
    right: -30px;
    font-size: 2rem;
    animation: sparkleEffect 2s ease-in-out infinite 1s;
}

.title-line {
    display: block;
    margin-bottom: 0.5rem;
    animation: premiumFloat 4s ease-in-out infinite;
    transition: all 0.3s ease;
}

.title-line:hover {
    transform: scale(1.05);
    color: #FFA500;
    text-shadow: 0 0 30px rgba(255, 165, 0, 0.8);
}

.experience-illustration {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.illustration-container {
    position: relative;
    display: inline-block;
    margin: 0 auto;
}

.dashed-arrow-up {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 40px solid #FFD700;
    opacity: 0.8;
    animation: premiumFloat 3s ease-in-out infinite 0.5s;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}

.dashed-arrow-up::before {
    content: '';
    position: absolute;
    top: 8px;
    left: -12px;
    width: 24px;
    height: 24px;
    background: repeating-linear-gradient(
        to bottom,
        transparent,
        transparent 3px,
        #FFD700 3px,
        #FFD700 6px
    );
    animation: sparkleEffect 2s ease-in-out infinite 1s;
}

.cardboard-box {
    position: relative;
    width: 200px;
    height: 150px;
    background: linear-gradient(45deg, #FFD700, #FFA500, #FFD700);
    border: 3px dashed #FF8C00;
    border-radius: 10px;
    margin: 0 auto 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3),
                0 16px 50px rgba(255, 215, 0, 0.2);
    animation: goldenPulse 3s ease-in-out infinite;
    transition: all 0.3s ease;
}

.cardboard-box:hover {
    transform: scale(1.1) rotate(2deg);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.5),
                0 20px 60px rgba(255, 215, 0, 0.3);
}

.box-icons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.box-icon {
    width: 30px;
    height: 30px;
    background: linear-gradient(45deg, #FF8C00, #FF4500);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.4);
    animation: sparkleEffect 2.5s ease-in-out infinite;
    transition: all 0.3s ease;
}

.box-icon:hover {
    transform: scale(1.2);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.6);
}

.box-images {
    display: flex;
    gap: 0.5rem;
}

.image-item {
    width: 40px;
    height: 30px;
    background: #2c3e50;
    border-radius: 5px;
    position: relative;
}

.image-item::before {
    content: '🏔️';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.8rem;
}

.people-container {
    position: relative;
    margin-top: 2rem;
}

.person {
    position: absolute;
    width: 60px;
    height: 80px;
}

.person-left {
    left: -80px;
    top: 0;
}

.person-right {
    right: -80px;
    top: 0;
}

.person-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    border-radius: 50%;
    margin: 0 auto 0.5rem;
    position: relative;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    animation: premiumFloat 3s ease-in-out infinite;
    transition: all 0.3s ease;
}

.person-avatar:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.person-left .person-avatar::before {
    content: '👩';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
}

.person-right .person-avatar::before {
    content: '👨';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
}

.person-pointing {
    width: 20px;
    height: 20px;
    background: #e74c3c;
    border-radius: 50%;
    margin: 0 auto;
    position: relative;
}

.person-pointing::before {
    content: '👉';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1rem;
}

.person-holding {
    width: 60px;
    height: 40px;
    background: #2c3e50;
    border-radius: 5px;
    margin: 0 auto;
    position: relative;
}

.person-holding::before {
    content: '🏔️';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1rem;
}

.decorative-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.leaf {
    position: absolute;
    width: 20px;
    height: 20px;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    border-radius: 50% 0 50% 0;
    opacity: 0.8;
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.4);
    animation: sparkleEffect 2.5s ease-in-out infinite;
}

.leaf-1 {
    top: 20%;
    left: 10%;
    animation: leafFloat 8s ease-in-out infinite;
}

.leaf-2 {
    top: 60%;
    right: 15%;
    animation: leafFloat 8s ease-in-out infinite 2s;
}

.leaf-3 {
    bottom: 30%;
    left: 20%;
    animation: leafFloat 8s ease-in-out infinite 4s;
}

@keyframes leafFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
    opacity: 0.4;
}

/* 추가적인 고급스러운 요소들 */
.experience-mall-section .section-header {
    animation: premiumFloat 5s ease-in-out infinite;
}

.luxury-sparkles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.luxury-sparkle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #FFD700;
    border-radius: 50%;
    animation: sparkleEffect 3s ease-in-out infinite;
}

.luxury-sparkle:nth-child(1) { top: 15%; left: 20%; animation-delay: 0s; }
.luxury-sparkle:nth-child(2) { top: 25%; right: 25%; animation-delay: 1s; }
.luxury-sparkle:nth-child(3) { top: 55%; left: 15%; animation-delay: 2s; }
.luxury-sparkle:nth-child(4) { top: 75%; right: 20%; animation-delay: 3s; }
.luxury-sparkle:nth-child(5) { top: 35%; left: 70%; animation-delay: 4s; }

.golden-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.golden-ring {
    position: absolute;
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    animation: premiumFloat 6s ease-in-out infinite;
}

.golden-ring:nth-child(1) {
    width: 100px;
    height: 100px;
    animation-delay: 0s;
}

.golden-ring:nth-child(2) {
    width: 150px;
    height: 150px;
    animation-delay: 2s;
}

.golden-ring:nth-child(3) {
    width: 200px;
    height: 200px;
    animation-delay: 4s;
}

.particle:nth-child(1) { top: 20%; left: 20%; animation: particleMove 6s linear infinite; }
.particle:nth-child(2) { top: 40%; right: 25%; animation: particleMove 6s linear infinite 1s; }
.particle:nth-child(3) { top: 60%; left: 30%; animation: particleMove 6s linear infinite 2s; }
.particle:nth-child(4) { top: 80%; right: 20%; animation: particleMove 6s linear infinite 3s; }
.particle:nth-child(5) { top: 30%; left: 60%; animation: particleMove 6s linear infinite 4s; }

@keyframes particleMove {
    0% { transform: translateY(0) scale(1); opacity: 0.4; }
    50% { transform: translateY(-30px) scale(1.2); opacity: 0.8; }
    100% { transform: translateY(-60px) scale(0.8); opacity: 0; }
}

.experience-cta {
    text-align: center;
}

.cta-text {
    font-size: 1.3rem;
    color: #FFD700;
    margin-bottom: 2rem;
    font-weight: 600;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
    animation: premiumFloat 4s ease-in-out infinite 1s;
    transition: all 0.3s ease;
}

.cta-text:hover {
    color: #FFA500;
    text-shadow: 0 0 25px rgba(255, 165, 0, 0.8);
    transform: scale(1.05);
}

.cta-button-overseas {
    display: inline-block;
    background: linear-gradient(45deg, #FFD700, #FFA500, #FFD700);
    color: #000;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4),
                0 16px 50px rgba(255, 215, 0, 0.2);
    animation: goldenPulse 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.cta-button-overseas::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.cta-button-overseas:hover {
    background: linear-gradient(45deg, #FFA500, #FFD700, #FFA500);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.6),
                0 25px 70px rgba(255, 215, 0, 0.3);
}

.cta-button-overseas:hover::before {
    left: 100%;
}

/* 모바일 반응형 */
@media (max-width: 768px) {
    .experience-mall-section {
        padding: 60px 0;
    }
    
    .experience-title {
        font-size: 2.5rem;
        margin-bottom: 3rem;
    }
    
    .cardboard-box {
        width: 150px;
        height: 120px;
    }
    
    .person {
        width: 50px;
        height: 70px;
    }
    
    .person-left {
        left: -60px;
    }
    
    .person-right {
        right: -60px;
    }
    
    .cta-button-overseas {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
}

/* 자주 묻는 질문 (FAQ) Section Styles */
.faq-section-new {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.faq-section-new::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"><circle cx="20" cy="20" r="2" fill="%233b82f6" opacity="0.3"/><circle cx="80" cy="40" r="2" fill="%233b82f6" opacity="0.3"/><circle cx="40" cy="80" r="2" fill="%233b82f6" opacity="0.3"/><circle cx="90" cy="70" r="2" fill="%233b82f6" opacity="0.3"/><circle cx="10" cy="60" r="2" fill="%233b82f6" opacity="0.3"/></svg>') repeat;
    background-size: 100px 100px;
    animation: faqParticleFloat 20s linear infinite;
}

@keyframes faqParticleFloat {
    0% { transform: translateY(0); }
    100% { transform: translateY(-100px); }
}

.faq-section-new .section-header h2 {
    color: white;
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 4rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.faq-container-new {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item-new {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.faq-item-new:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.faq-question-new {
    background: #1e3a8a;
    color: white;
    padding: 1.5rem 2rem;
    position: relative;
}

.faq-question-new h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.4;
}

.consultation-link {
    font-size: 0.9rem;
    color: #93c5fd;
    margin-top: 0.5rem;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.3s ease;
}

.consultation-link:hover {
    color: #dbeafe;
}

.faq-answer-new {
    padding: 2rem;
    background: white;
}

.faq-answer-new p {
    color: #1f2937;
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
    font-weight: 500;
}

.highlight-red {
    color: #dc2626;
    font-weight: 700;
}

/* 모바일 반응형 */
@media (max-width: 768px) {
    .faq-section-new {
        padding: 60px 0;
    }
    
    .faq-section-new .section-header h2 {
        font-size: 2.2rem;
        margin-bottom: 3rem;
    }
    
    .faq-container-new {
        margin: 0 20px;
        gap: 1rem;
    }
    
    .faq-question-new {
        padding: 1.2rem 1.5rem;
    }
    
    .faq-question-new h3 {
        font-size: 1.1rem;
    }
    
    .faq-answer-new {
        padding: 1.5rem;
    }
    
    .faq-answer-new p {
        font-size: 1rem;
    }
}

/* 전역 모바일 최적화 - 화면 흔들림 방지 및 여백 제거 */
html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

/* 모바일에서 화면 흔들림 방지 및 여백 제거 */
@media (max-width: 768px) {
    /* 전역 설정 - 스크롤 동작 방해하지 않음 */
    html, body {
        width: 100%;
        max-width: 100%;
        /* overflow-x: hidden 완전 제거 */
    }
    
    /* 각 섹션별 최적화 - 가로 스크롤만 방지하되 세로 스크롤은 정상 작동 */
    .hero {
        width: 100%;
        max-width: 100%;
        /* overflow-x: hidden 제거하여 스크롤 동작 방해하지 않음 */
    }
    
    .hero .hero-slider {
        width: 100%;
        max-width: 100%;
        /* overflow-x: hidden 제거하여 스크롤 동작 방해하지 않음 */
    }
    
    .company-intro-new {
        width: 100%;
        max-width: 100%;
        /* overflow-x: hidden 제거하여 스크롤 동작 방해하지 않음 */
    }
    
    .company-intro-new .intro-content-new {
        width: 100%;
        max-width: 100%;
        padding: 0 15px;
        /* overflow-x: hidden 제거하여 스크롤 동작 방해하지 않음 */
    }
    
    .features {
        width: 100%;
        max-width: 100%;
        /* overflow-x: hidden 제거하여 스크롤 동작 방해하지 않음 */
    }
    
    .features .features-content {
        width: 100%;
        max-width: 100%;
        padding: 0 15px;
        /* overflow-x: hidden 제거하여 스크롤 동작 방해하지 않음 */
    }
    
    .portfolio {
        width: 100%;
        max-width: 100%;
        /* overflow-x: hidden 제거하여 스크롤 동작 방해하지 않음 */
    }
    
    .portfolio .portfolio-slider-container {
        width: 100%;
        max-width: 100%;
        padding: 0 15px;
        /* overflow-x: hidden 제거하여 스크롤 동작 방해하지 않음 */
    }
    
    .portfolio-slider {
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .portfolio-slider::-webkit-scrollbar {
        display: none;
    }
    
    .faq-section {
        width: 100%;
        max-width: 100%;
        /* overflow-x: hidden 제거하여 스크롤 동작 방해하지 않음 */
    }
    
    .faq-section .faq-container {
        width: 100%;
        max-width: 100%;
        padding: 0 15px;
        /* overflow-x: hidden 제거하여 스크롤 동작 방해하지 않음 */
    }
    
    .contact {
        width: 100%;
        max-width: 100%;
        /* overflow-x: hidden 제거하여 스크롤 동작 방해하지 않음 */
    }
    
    .contact .container {
        width: 100%;
        max-width: 100%;
        padding: 0 15px;
        /* overflow-x: hidden 제거하여 스크롤 동작 방해하지 않음 */
    }
    
    /* 추가 섹션들 */
    .company-intro {
        width: 100%;
        max-width: 100%;
        /* overflow-x: hidden 제거하여 스크롤 동작 방해하지 않음 */
    }
    
    .company-intro .container {
        width: 100%;
        max-width: 100%;
        padding: 0 15px;
        /* overflow-x: hidden 제거하여 스크롤 동작 방해하지 않음 */
    }
    
    .process-section {
        width: 100%;
        max-width: 100%;
        /* overflow-x: hidden 제거하여 스크롤 동작 방해하지 않음 */
    }
    
    .process-section .container {
        width: 100%;
        max-width: 100%;
        padding: 0 15px;
        /* overflow-x: hidden 제거하여 스크롤 동작 방해하지 않음 */
    }
    
    .cta-section {
        width: 100%;
        max-width: 100%;
        /* overflow-x: hidden 제거하여 스크롤 동작 방해하지 않음 */
    }
    
    .cta-section .container {
        width: 100%;
        max-width: 100%;
        padding: 0 15px;
        /* overflow-x: hidden 제거하여 스크롤 동작 방해하지 않음 */
    }
}

/* 코인결제 복지몰 소개 섹션 스타일 */
.coin-welfare-intro-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('assets/images/coinmall.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
    flex-direction: column;
}

.coin-welfare-intro-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.coin-welfare-particle {
    position: absolute;
    font-size: 2rem;
    animation: float 6s ease-in-out infinite;
    opacity: 0.7;
}

.coin-welfare-particle.particle-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.coin-welfare-particle.particle-2 {
    top: 30%;
    right: 15%;
    animation-delay: 1s;
}

.coin-welfare-particle.particle-3 {
    bottom: 25%;
    left: 20%;
    animation-delay: 2s;
}

.coin-welfare-particle.particle-4 {
    bottom: 35%;
    right: 25%;
    animation-delay: 3s;
}

.coin-welfare-particle.particle-5 {
    top: 50%;
    left: 5%;
    animation-delay: 4s;
}

.coin-welfare-particle.particle-6 {
    top: 60%;
    right: 10%;
    animation-delay: 5s;
}

/* 섹션 제목 스타일 */
.coin-welfare-section-header {
    position: relative;
    z-index: 3;
    text-align: center;
    margin-bottom: 40px;
    width: 100%;
}

.coin-welfare-section-title {
    font-size: 4rem;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
    white-space: nowrap;
    animation: titleGlow 3s ease-in-out infinite;
}

.coin-welfare-intro-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.coin-welfare-intro-text {
    text-align: center;
    color: white;
    max-width: 800px;
}

.coin-welfare-badge {
    display: inline-block;
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.coin-welfare-main-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.3;
}

.coin-welfare-title-line {
    display: block;
    margin-bottom: 10px;
    white-space: nowrap;
}

.coin-welfare-title-line.highlight {
    color: #ffd700;
    font-weight: 800;
}

.coin-welfare-subtitle {
    font-size: 1.4rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}

.coin-welfare-subtitle strong {
    color: #ffd700;
    font-weight: 700;
}

.coin-welfare-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-bottom: 40px;
}

.coin-welfare-feature-tag {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.coin-welfare-feature-tag:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.coin-welfare-detail-button-container {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.coin-welfare-detail-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
}

.coin-welfare-detail-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.6);
}

.coin-welfare-detail-button i {
    transition: transform 0.3s ease;
}

.coin-welfare-detail-button:hover i {
    transform: translateX(5px);
}

/* 쿠폰마켓 소개 섹션 스타일 */
.coupon-intro-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('assets/images/coupon1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
    flex-direction: column;
}

.coupon-intro-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* 섹션 제목 스타일 */
.coupon-section-header {
    position: relative;
    z-index: 3;
    text-align: center;
    margin-bottom: 40px;
    width: 100%;
}

.coupon-section-title {
    font-size: 4rem;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
    white-space: nowrap;
    animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% { 
        filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.5));
    }
    50% { 
        filter: drop-shadow(0 0 40px rgba(255, 215, 0, 0.8));
    }
}

.coupon-particle {
    position: absolute;
    font-size: 2rem;
    animation: float 6s ease-in-out infinite;
    opacity: 0.7;
}

.coupon-particle.particle-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.coupon-particle.particle-2 {
    top: 30%;
    right: 15%;
    animation-delay: 1s;
}

.coupon-particle.particle-3 {
    bottom: 25%;
    left: 20%;
    animation-delay: 2s;
}

.coupon-particle.particle-4 {
    bottom: 35%;
    right: 25%;
    animation-delay: 3s;
}

.coupon-particle.particle-5 {
    top: 50%;
    left: 5%;
    animation-delay: 4s;
}

.coupon-particle.particle-6 {
    top: 60%;
    right: 10%;
    animation-delay: 5s;
}

.coupon-intro-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 60px;
}

.coupon-intro-text {
    flex: 1;
    color: white;
}

.coupon-main-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
}

.coupon-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 25px;
    line-height: 1.3;
}

.coupon-title-line {
    display: block;
    margin-bottom: 10px;
    white-space: nowrap;
}

.coupon-subtitle {
    font-size: 1.3rem;
    line-height: 1.6;
    opacity: 0.9;
}

.coupon-subtitle strong {
    color: #ffd700;
    font-weight: 700;
}

.coupon-intro-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.coupon-animation {
    position: relative;
    width: 300px;
    height: 200px;
}

.coupon-main {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    color: white;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: float 4s ease-in-out infinite;
}

.coupon-percentage {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.coupon-text {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.coupon-line {
    height: 3px;
    background: white;
    margin: 0 auto 15px;
    width: 80%;
}

.coupon-barcode {
    height: 20px;
    background: repeating-linear-gradient(
        90deg,
        white 0,
        white 2px,
        transparent 2px,
        transparent 4px
    );
    width: 100%;
}

.coupon-banner {
    position: absolute;
    top: -20px;
    right: -20px;
    background: #ffd700;
    color: #333;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.1rem;
    transform: rotate(15deg);
    animation: float 3s ease-in-out infinite reverse;
}

.coupon-intro-bottom-buttons {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.coupon-button-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.coupon-cta-button {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.coupon-cta-button:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.coupon-detail-button-container {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.coupon-detail-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #333;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.coupon-detail-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.6);
}

.coupon-detail-button i {
    transition: transform 0.3s ease;
}

.coupon-detail-button:hover i {
    transform: translateX(5px);
}

/* 모바일 반응형 */
@media (max-width: 768px) {
    .coupon-section-title {
        font-size: 2.5rem;
    }
    
    .coin-welfare-section-title {
        font-size: 2.5rem;
    }
    
    .coin-welfare-main-title {
        font-size: 2.5rem;
    }
    
    .coin-welfare-subtitle {
        font-size: 1.2rem;
    }
    
    .coin-welfare-features {
        gap: 10px;
    }
    
    .coin-welfare-feature-tag {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    .coupon-intro-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
        padding: 0 15px;
    }
    
    .coupon-main-title {
        font-size: 2.5rem;
    }
    
    .coupon-title {
        font-size: 1.8rem;
    }
    
    .coupon-subtitle {
        font-size: 1.1rem;
    }
    
    .coupon-animation {
        width: 250px;
        height: 170px;
    }
    
    .coupon-percentage {
        font-size: 3rem;
    }
    
    .coupon-text {
        font-size: 1rem;
    }
    
    .coupon-button-container {
        gap: 15px;
    }
    
    .coupon-cta-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .coupon-detail-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

/* 모바일에서 쿠폰 섹션 자세히보기 버튼 위치 조정 */
@media (max-width: 768px) {
    .coupon-detail-button-container {
        position: relative;
        left: 20px;
        transform: none;
    }
    
    .coupon-detail-button {
        margin-left: 0;
        text-align: left;
    }
}

/* 모바일에서는 메뉴바 숨김 기능 비활성화 */
@media (max-width: 768px) {
    .main-nav.nav-hidden {
        transform: translateY(0);
    }
    
    .main-nav.nav-visible {
        transform: translateY(0);
    }
    
    /* 모바일에서 포트폴리오 섹션 숨김 */
    .portfolio {
        display: none !important;
    }
}

/* 새로운 제작 프로세스 섹션 */
.new-process-section {
    padding: 80px 5%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.new-process-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="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.new-process-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(118, 75, 162, 0.05) 0%, transparent 70%);
    animation: backgroundShift 20s ease-in-out infinite;
    z-index: 1;
}

.new-process-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

/* PC용 화려한 떠다니는 파티클들 */
.process-floating-particle {
    position: absolute;
    font-size: 2.5rem;
    animation: processFloat 12s ease-in-out infinite;
    opacity: 0.6;
    z-index: 1;
    pointer-events: none;
}

.process-particle-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.process-particle-2 {
    top: 20%;
    right: 15%;
    animation-delay: 2s;
}

.process-particle-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

.process-particle-4 {
    bottom: 20%;
    right: 10%;
    animation-delay: 6s;
}

.process-particle-5 {
    top: 50%;
    left: 5%;
    animation-delay: 8s;
}

.process-particle-6 {
    top: 60%;
    right: 5%;
    animation-delay: 10s;
}

.new-process-header {
    text-align: center;
    margin-bottom: 60px;
}

.new-process-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.new-process-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    font-weight: 300;
}

.new-process-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.new-process-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.new-process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.5s ease;
}

.new-process-card:hover::before {
    left: 100%;
}

.new-process-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
    border-color: rgba(255, 215, 0, 0.6);
    background: rgba(255, 255, 255, 0.15);
}

.new-process-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.new-process-card:hover::after {
    opacity: 1;
}

.new-process-icon {
    font-size: 3rem;
    color: #ffd700;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    transition: all 0.4s ease;
    animation: iconGlow 3s ease-in-out infinite;
}

.new-process-card:hover .new-process-icon {
    transform: scale(1.1) rotate(5deg);
    color: #ffed4e;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
}

.new-process-number {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
    animation: numberPulse 2s ease-in-out infinite;
}

.new-process-card:hover .new-process-number {
    background: rgba(255, 215, 0, 0.3);
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
        border-color: rgba(255, 215, 0, 0.6);
}

.new-process-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
}

.new-process-description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    opacity: 0.9;
}

.new-process-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.new-process-tag {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.new-process-tag:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

/* 스크롤 애니메이션 */
.new-process-card.scroll-animate-up,
.new-process-title.scroll-animate-up,
.new-process-subtitle.scroll-animate-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.new-process-card.scroll-animate-up.animate,
.new-process-title.scroll-animate-up.animate,
.new-process-subtitle.scroll-animate-up.animate {
    opacity: 1;
    transform: translateY(0);
}

/* 모바일 반응형 */
@media (max-width: 768px) {
    .new-process-section {
        padding: 60px 5%;
    }
    
    .new-process-title {
        font-size: 2.5rem;
    }
    
    .new-process-subtitle {
        font-size: 1.1rem;
    }
    
    .new-process-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .new-process-card {
        padding: 30px 20px;
    }
    
    .new-process-icon {
        font-size: 2.5rem;
    }
    
    /* 모바일에서 화려한 애니메이션 비활성화 */
    .new-process-section .process-floating-particle {
        display: none !important;
        animation: none !important;
    }
    
    .new-process-section::after {
        animation: none !important;
    }
    
    .new-process-card .new-process-icon {
        animation: none !important;
    }
    
    .new-process-card .new-process-number {
        animation: none !important;
    }
    
    .new-process-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    }
    
    .new-process-card:hover .new-process-icon {
        transform: none;
        color: #ffd700;
    }
    
    .new-process-card:hover .new-process-number {
        transform: none;
        background: rgba(255, 255, 255, 0.2);
    }
}

/* PC용 화려한 애니메이션 키프레임들 */
@keyframes backgroundShift {
    0%, 100% {
        transform: scale(1) rotate(0deg);
    }
    50% {
        transform: scale(1.1) rotate(180deg);
    }
}

@keyframes processFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.6;
    }
    25% {
        transform: translateY(-20px) rotate(90deg);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-40px) rotate(180deg);
        opacity: 1;
    }
    75% {
        transform: translateY(-20px) rotate(270deg);
        opacity: 0.8;
    }
}

@keyframes iconGlow {
    0%, 100% {
        filter: brightness(1);
        text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    }
    50% {
        filter: brightness(1.3);
        text-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
    }
}

@keyframes numberPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 rgba(255, 255, 255, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    }
}