/* ==========================================================================
   PROCESS STYLES (WITH CONTRAST OVERRIDES)
   ========================================================================== */

.video-process-section {
    background: #ffffff !important;
    padding-top: 100px;
    padding-bottom: 90px;
}

/* Header Typography & High-Contrast Overrides */
.video-process-section .section-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #9333ea !important;
    background: rgba(147, 51, 234, 0.08);
    border: 1px solid rgba(147, 51, 234, 0.2);
    padding: 6px 16px;
    border-radius: 999px;
}

.video-process-section .section-title {
    font-size: 38px;
    font-weight: 800;
    color: #071a52 !important;
    letter-spacing: -0.5px;
    margin-top: 10px;
    margin-bottom: 12px;
}

.video-process-section .section-subtitle {
    color: #475569 !important;
    font-size: 16.5px;
    line-height: 1.7;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

/* Timeline Layout & Cards */
.process-timeline {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.process-step-card {
    flex: 1;
    min-width: 220px;
    background: #fafafa;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 32px 22px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.process-step-card:hover {
    background: #ffffff;
    border-color: #ff7b2c;
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(255, 123, 44, 0.1);
}

.step-num {
    position: absolute;
    top: 14px;
    right: 18px;
    font-size: 13px;
    font-weight: 800;
    color: #94a3b8;
    letter-spacing: 1px;
}

.step-icon-box {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #071a52 0%, #0b2c84 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    box-shadow: 0 10px 25px rgba(7, 26, 82, 0.15);
}

.process-step-card h4 {
    font-size: 18px;
    font-weight: 800;
    color: #071a52;
    margin-bottom: 10px;
}

.process-step-card p {
    font-size: 13.5px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.process-connector {
    align-self: center;
    color: #cbd5e1;
    font-size: 20px;
    margin-top: -20px;
}

@media (max-width: 991px) {
    .process-timeline { flex-direction: column; gap: 24px; }
    .process-step-card { width: 100%; min-width: 100%; }
}