.hero-section-vs {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    filter: blur(3px);
}

.hero-section-vs::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.hero-content-vs {
    color: white;
    z-index: 1;
}

.hero-title-vs {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subtitle-vs {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn-hero-vs {
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    margin-right: 15px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.btn-hero-vs.primary {
    background: linear-gradient(45deg, #007bff, #0056b3);
    color: white;
    border: none;
}

.btn-hero-vs.primary:hover {
    background: linear-gradient(45deg, #0056b3, #004085);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 123, 255, 0.3);
}

.btn-hero-vs:not(.primary) {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-hero-vs:not(.primary):hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.hero-stats-vs {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.stat-item-vs {
    text-align: center;
}

.stat-number-vs {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #007bff;
    margin-bottom: 0.5rem;
}

.stat-label-vs {
    display: block;
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Animation classes */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.stagger-vs-1 {
    animation-delay: 0.2s;
}

.stagger-vs-2 {
    animation-delay: 0.4s;
}

.stagger-vs-3 {
    animation-delay: 0.6s;
}

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

@media (max-width: 768px) {
    .hero-title-vs {
        font-size: 2.5rem;
    }

    .hero-subtitle-vs {
        font-size: 1.1rem;
    }

    .hero-stats-vs {
        gap: 1rem;
        justify-content: center;
    }
}

.stat-item-vs {
    text-align: center;
    color: white;
}

.stat-number-vs {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
}

.stat-label-vs {
    font-size: 0.9rem;
    opacity: 0.9;
}

.btn-hero-vs {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 15px 35px;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    margin-right: 15px;
}

.btn-hero-vs:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    color: white;
}

.btn-hero-vs.primary {
    background: white;
    color: var(--primary-color);
}

.btn-hero-vs.primary:hover {
    background: #f8fafc;
    color: var(--secondary-color);
}

/* Features Section */
.features-section-vs {
    padding: 100px 0;
    background: var(--light-gray);
}

.feature-card-vs {
    background: white;
    border-radius: 20px;
    padding: 40px;
    height: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.feature-card-vs::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--streaming-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.feature-card-vs:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.feature-icon-vs {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    background: var(--streaming-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    margin: auto auto 25px;
}

.feature-title-vs {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.feature-description-vs {
    color: #64748b;
    line-height: 1.7;
}

/* Tech Stack Section */
.tech-section-vs {
    padding: 100px 0;
    background: white;
}

.tech-grid-vs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.tech-item-vs {
    text-align: center;
    padding: 30px;
    border-radius: 16px;
    background: var(--light-gray);
    transition: all 0.3s ease;
}

.tech-item-vs:hover {
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.tech-icon-vs {
    font-size: 3rem;
    margin-bottom: 15px;
    background: var(--streaming-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tech-name-vs {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 8px;
}

.tech-description-vs {
    font-size: 0.9rem;
    color: #64748b;
}

/* Use Cases Section */
.use-cases-section-vs {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark-color), #334155);
    color: white;
}

.use-case-card-vs {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px;
    height: 100%;
    transition: all 0.3s ease;
}

.use-case-card-vs:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.use-case-icon-vs {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: var(--streaming-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 20px;
}

.use-case-title-vs {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.use-case-description-vs {
    opacity: 0.9;
    line-height: 1.6;
}

/* Pricing Section */
.pricing-section-vs {
    padding: 100px 0;
    background: var(--light-gray);
}

.pricing-card-vs {
    background: white;
    border-radius: 20px;
    padding: 40px;
    height: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.pricing-card-vs.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.pricing-card-vs:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.pricing-card-vs.featured:hover {
    transform: translateY(-5px) scale(1.07);
}

.pricing-badge-vs {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--streaming-gradient);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-title-vs {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.pricing-price-vs {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.pricing-period-vs {
    color: #64748b;
    margin-bottom: 30px;
}

.pricing-features-vs {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.pricing-features-vs li {
    padding: 10px 0;
    color: #475569;
    position: relative;
    padding-left: 25px;
}

.pricing-features-vs li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.btn-pricing-vs {
    width: 100%;
    padding: 15px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-pricing-vs.primary {
    background: var(--streaming-gradient);
    border: none;
    color: white;
}

.btn-pricing-vs.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

/* CTA Section */
.cta-section-vs {
    background: var(--streaming-gradient);
    padding: 80px 0;
    position: relative;
}

.cta-content-vs {
    text-align: center;
    color: white;
}

.cta-title-vs {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-subtitle-vs {
    font-size: 1.2rem;
    opacity: 0.95;
    margin-bottom: 30px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title-vs {
        font-size: 2.8rem;
    }

    .hero-stats-vs {
        gap: 20px;
        justify-content: center;
    }

    .feature-card-vs,
    .pricing-card-vs {
        margin-bottom: 30px;
    }

    .pricing-card-vs.featured {
        transform: none;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

.stagger-vs-1 { animation-delay: 0.1s; }
.stagger-vs-2 { animation-delay: 0.2s; }
.stagger-vs-3 { animation-delay: 0.3s; }
.stagger-vs-4 { animation-delay: 0.4s; }
