/* Verification Section Styles - Compact */
.how-it-works {
    padding: 60px 0 !important;
}

.verification-content-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 40px;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0;
}

/* Left Content */
.verification-content-left {
    padding-right: 10px;
}

.verification-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #e0f2fe;
    color: #0066ff;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-icon {
    width: 14px;
    height: 14px;
}

.verification-title {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.verification-title span {
    background: linear-gradient(90deg, #0066ff, #00d46a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.verification-subtitle {
    font-size: 20px;
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 10px;
}

.verification-description {
    font-size: 15px;
    color: #718096;
    line-height: 1.4;
    margin-bottom: 24px;
}

/* Process Steps - Compact */
.verification-steps {
    margin-bottom: 24px;
}

.verification-step {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
    padding: 12px 16px;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: #f8fafc;
    border: 2px solid transparent;
}

.verification-step:hover {
    background: white;
    border-color: #0066ff;
    transform: translateX(6px);
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.1);
}

.verification-step-icon-wrapper {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #0066ff, #0052cc);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    box-shadow: 0 3px 8px rgba(0, 102, 255, 0.2);
}

.verification-step-number {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 18px;
    height: 18px;
    background: #00d46a;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    box-shadow: 0 2px 4px rgba(0, 212, 106, 0.3);
}

.verification-step-icon {
    width: 20px;
    height: 20px;
    color: white;
}

.verification-step-content h4 {
    font-size: 14px;
    margin-bottom: 2px;
    color: #2d3748;
    font-weight: 600;
}

.verification-step-content p {
    color: #718096;
    font-size: 12px;
    line-height: 1.3;
}

/* CTA Button - Compact */
.verification-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #0066ff;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(0, 102, 255, 0.2);
    text-decoration: none;
}

.verification-cta:hover {
    background: #0052cc;
    transform: translateY(-2px);
    box-shadow: 0 5px 16px rgba(0, 102, 255, 0.3);
    color: white;
}

.cta-arrow {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
}

.verification-cta:hover .cta-arrow {
    transform: translateX(3px);
}

/* Right Video Section - Compact */
.verification-video-section {
    position: relative;
}

.verification-video-wrapper {
    background: #f7fafc;
    border-radius: 16px;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.video-decoration {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0066ff 0%, #00d46a 100%);
    opacity: 0.1;
    border-radius: 16px;
    transform: rotate(45deg);
}

.verification-video-frame {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    background: #1a1a1a;
    padding: 4px;
}

.browser-bar {
    background: #2d3748;
    height: 28px;
    border-radius: 8px 8px 0 0;
    display: flex;
    align-items: center;
    padding: 0 10px;
    gap: 6px;
}

.browser-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4a5568;
}

.browser-dot:nth-child(1) { background: #ff5f56; }
.browser-dot:nth-child(2) { background: #ffbd2e; }
.browser-dot:nth-child(3) { background: #27c93f; }

.verification-video-frame iframe {
    width: 100%;
    height: 300px;
    border: none;
    display: block;
    background: #000;
}

/* Responsive */
@media (max-width: 1024px) {
    .verification-content-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .verification-title {
        font-size: 36px;
    }

    .verification-content-left {
        padding-right: 0;
    }
}

@media (max-width: 640px) {
    .verification-content-grid {
        padding: 40px 0;
    }

    .verification-title {
        font-size: 28px;
    }

    .verification-subtitle {
        font-size: 20px;
    }

    .verification-step {
        padding: 12px 16px;
    }

    .verification-step-icon-wrapper {
        width: 40px;
        height: 40px;
    }

    .verification-video-wrapper {
        padding: 20px;
    }
}