/* ==========================================================================
   FEATURES STYLES (HEADER CONTRAST FIX & SOFT ICON BADGES)
   ========================================================================== */

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

/* Section Header Typography Overrides */
.video-features-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-features-section .section-title {
    font-size: 38px;
    font-weight: 800;
    color: #071a52 !important;
    letter-spacing: -0.5px;
    margin-top: 10px;
    margin-bottom: 12px;
}

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

/* Feature Cards Base */
.feature-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 38px 28px;
    transition: all 0.35s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: #c084fc;
    box-shadow: 0 20px 40px rgba(147, 51, 234, 0.08);
}

/* Soft Tinted Icon Badges */
.feature-icon-wrap {
    width: 58px;
    height: 58px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.feature-icon-wrap i {
    font-size: 22px;
}

/* Color Palette Variants */
.icon-purple {
    background: rgba(147, 51, 234, 0.08) !important;
    border: 1px solid rgba(147, 51, 234, 0.15);
    color: #9333ea !important;
}

.icon-orange {
    background: rgba(255, 123, 44, 0.08) !important;
    border: 1px solid rgba(255, 123, 44, 0.15);
    color: #ff7b2c !important;
}

.icon-blue {
    background: rgba(37, 99, 235, 0.08) !important;
    border: 1px solid rgba(37, 99, 235, 0.15);
    color: #2563eb !important;
}

.icon-green {
    background: rgba(22, 163, 74, 0.08) !important;
    border: 1px solid rgba(22, 163, 74, 0.15);
    color: #16a34a !important;
}

.icon-cyan {
    background: rgba(8, 145, 178, 0.08) !important;
    border: 1px solid rgba(8, 145, 178, 0.15);
    color: #0891b2 !important;
}

.icon-amber {
    background: rgba(217, 119, 6, 0.08) !important;
    border: 1px solid rgba(217, 119, 6, 0.15);
    color: #d97706 !important;
}

.feature-card:hover .feature-icon-wrap {
    transform: scale(1.08);
}

/* Card Content Typography */
.feature-card h3 {
    font-size: 20px;
    font-weight: 800;
    color: #071a52;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 14.5px;
    color: #64748b;
    line-height: 1.65;
    margin: 0;
}