.products-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent);
}

.product-demo {
    position: relative;
    padding: 4rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

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

.product-demo:hover {
    background: rgba(255, 255, 255, 0.02);
}

.product-content {
    max-width: 500px;
    position: relative;
    z-index: 2;
}

.product-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, #00DC82 0%, #36E4DA 50%, #0047FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.03em;
}

.product-description {
    font-size: 1.125rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

.product-video {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.product-video:before {
    content: '';
    display: block;
    padding-top: 56.25%;
}

.product-video-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.product-demo:hover .product-video {
    transform: translateY(-4px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.product-demo:hover .product-video-content {
    background: rgba(255, 255, 255, 0.08);
}

.product-cta {
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .product-title {
        font-size: 2rem;
    }
    
    .product-demo {
        padding: 3rem 0;
    }
}
