/* Video Lead Capture Section */
.video-lead-capture-section {
    padding: 40px 0 40px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
}

.capture-step-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    position: relative;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    height: 100%;
    background-image: linear-gradient(white, white), linear-gradient(135deg, #8b5cf6, #3b82f6);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.capture-step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(139, 92, 246, 0.25);
}

.step-badge {
    position: absolute;
    top: -14px;
    left: 32px;
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
    letter-spacing: 0.5px;
}

.step-icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
    .video-lead-capture-section {
        padding: 30px 0 30px 0;
    }

    .capture-step-card {
        padding: 24px;
        margin-bottom: 20px;
    }

    .step-badge {
        top: -12px;
        left: 24px;
        font-size: 10px;
        padding: 4px 12px;
    }

    .step-icon-wrapper {
        width: 48px;
        height: 48px;
        margin-bottom: 16px;
    }

    .capture-step-card h3 {
        font-size: 20px;
    }

    .capture-step-card p {
        font-size: 14px;
    }

    .capture-step-card ul li {
        font-size: 14px;
    }
}