/* Products Line Slide */
.products-line-slide {
    width: 100%;
    background: #ffffff;
    padding: 80px 0 40px;
    overflow: hidden;
    margin: 0;
    position: relative;
}

.products-line-slide .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.products-line-slide .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a2332;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.products-line-slide .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #00BFFF, #0066CC);
    border-radius: 2px;
}

.products-line-slide .section-subtitle {
    font-size: 1.1rem;
    color: #5a6c7d;
    font-weight: 400;
}

.products-line-slide .slide-wrapper {
    position: relative;
    overflow: hidden;
    padding: 30px 0;
}

/* 양사이드 그라디언트 효과 */
.products-line-slide .slide-wrapper::before,
.products-line-slide .slide-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 2;
    pointer-events: none;
}

.products-line-slide .slide-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #ffffff 0%, transparent 100%);
}

.products-line-slide .slide-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #ffffff 0%, transparent 100%);
}

.products-line-slide .slide-track {
    display: flex;
    animation: scroll 60s linear infinite; /* 40s -> 60s로 속도 감소 */
    width: max-content;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.products-line-slide .slide-content {
    display: inline-flex; /* flex -> inline-flex로 변경 */
    align-items: center;
    white-space: nowrap;
}

.products-line-slide .product-name {
    color: #333;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.5px;
    transition: all 0.3s ease;
    padding: 0 30px; /* 패딩 추가 */
}

.products-line-slide .product-name:hover {
    color: #0066CC;
    transform: scale(1.05);
}

.products-line-slide .separator {
    color: #ccc;
    font-size: 18px;
    padding: 0; /* 마진 제거 */
}

/* 호버 시에도 계속 재생 - 제거 */
/* .products-line-slide:hover .slide-track {
    animation-play-state: paused;
} */

/* 반응형 */
@media (max-width: 768px) {
    .products-line-slide {
        padding: 60px 0 30px;
    }
    
    .products-line-slide .section-title {
        font-size: 1.8rem;
    }
    
    .products-line-slide .slide-wrapper::before,
    .products-line-slide .slide-wrapper::after {
        width: 80px;
    }
    
    .products-line-slide .slide-content {
        padding: 0 20px;
    }
    
    .products-line-slide .product-name {
        font-size: 16px;
    }
    
    .products-line-slide .separator {
        margin: 0 20px;
        font-size: 14px;
    }
}

/* Products Section */
.products {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
}

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

.products .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a2332;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.products .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #00BFFF, #0066CC);
    border-radius: 2px;
}

.products .section-subtitle {
    font-size: 1.1rem;
    color: #5a6c7d;
    font-weight: 400;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,102,204,0.15);
    border-color: #00BFFF;
}

.product-card .product-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, rgba(0,191,255,0.1), rgba(0,102,204,0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card .product-icon i {
    font-size: 2.5rem;
    color: #0066CC;
}

.product-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 15px;
}

.product-card p {
    font-size: 1rem;
    color: #5a6c7d;
    line-height: 1.6;
    margin-bottom: 25px;
}

.product-card .btn-link {
    display: inline-flex;
    align-items: center;
    color: #0066CC;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.product-card .btn-link:hover {
    color: #00BFFF;
    transform: translateX(5px);
}

/* Slider Wrapper */
.products-slider-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.products-slider {
    display: flex;
    transition: transform 0.5s ease;
}

.product-slide {
    min-width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.product-slide.active {
    opacity: 1;
    visibility: visible;
}

/* Product Content */
.product-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
    background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
    border-radius: 20px;
    padding: 60px;
    box-shadow: 0 10px 40px rgba(0, 102, 204, 0.08);
}

.product-info h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 0.5rem;
}

.product-subtitle {
    font-size: 1.2rem;
    color: #00BFFF;
    margin-bottom: 2rem;
    font-weight: 500;
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem 0;
}

.product-features li {
    padding: 0.8rem 0;
    display: flex;
    align-items: center;
    font-size: 1.05rem;
    color: #5a6c7d;
    border-bottom: 1px solid rgba(0, 102, 204, 0.1);
}

.product-features li:last-child {
    border-bottom: none;
}

.product-features li i {
    color: #00BFFF;
    margin-right: 1rem;
    font-size: 0.9rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 14px 30px;
    background: linear-gradient(135deg, #00BFFF, #0066CC);
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.4);
}

.btn-primary i {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.btn-primary:hover i {
    transform: translateX(3px);
}

/* Product Visual */
.product-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-icon {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, rgba(0, 191, 255, 0.1), rgba(0, 102, 204, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: float 3s ease-in-out infinite;
}

.product-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, #00BFFF, #0066CC);
    opacity: 0.1;
    animation: pulse 2s infinite;
}

.product-icon i {
    font-size: 5rem;
    color: #0066CC;
    z-index: 1;
}

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

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.05;
    }
    100% {
        transform: scale(1);
        opacity: 0.1;
    }
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.slider-prev,
.slider-next {
    width: 50px;
    height: 50px;
    background: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    pointer-events: all;
}

.slider-prev:hover,
.slider-next:hover {
    background: linear-gradient(135deg, #00BFFF, #0066CC);
    color: white;
    transform: scale(1.1);
}

.slider-prev i,
.slider-next i {
    font-size: 1.2rem;
    color: #0066CC;
}

.slider-prev:hover i,
.slider-next:hover i {
    color: white;
}

/* Slider Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 102, 204, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    width: 30px;
    border-radius: 6px;
    background: linear-gradient(135deg, #00BFFF, #0066CC);
}

.dot:hover {
    background: rgba(0, 102, 204, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .products-line-slide .slide-content {
        padding: 0 20px;
    }
    
    .products-line-slide .product-name {
        font-size: 14px;
    }
    
    .products-line-slide .separator {
        margin: 0 15px;
    }
}

@media (max-width: 1024px) {
    .product-content {
        grid-template-columns: 1fr;
        padding: 40px;
        text-align: center;
    }
    
    .product-visual {
        order: -1;
        margin-bottom: 30px;
    }
    
    .product-icon {
        width: 200px;
        height: 200px;
    }
    
    .product-icon i {
        font-size: 4rem;
    }
}

@media (max-width: 768px) {
    .products {
        padding: 60px 0;
    }
    
    .products .section-title {
        font-size: 2rem;
    }
    
    .product-info h3 {
        font-size: 1.8rem;
    }
    
    .product-subtitle {
        font-size: 1rem;
    }
    
    .product-features li {
        font-size: 0.95rem;
    }
    
    .product-content {
        padding: 30px 20px;
    }
    
    .slider-prev,
    .slider-next {
        width: 40px;
        height: 40px;
    }
    
    .product-icon {
        width: 150px;
        height: 150px;
    }
    
    .product-icon i {
        font-size: 3rem;
    }
}