/* --- Features Grid (The "Wow" Redesign) --- */
.bfai-features-wow-grid {
    display: flex;
    flex-wrap: nowrap;
    /* Force single row on desktop */
    justify-content: center;
    gap: 32px;
    margin: 60px auto 20px auto;
    /* Reduced from 100px */
    max-width: 1100px;
    width: 100%;
}

.bfai-feature-card-wow {
    position: relative;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 32px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    flex: 1;
    /* Equal width */
    min-width: 0;
    /* Important for flex shrink */
    display: flex;
    flex-direction: column;
    min-height: 350px;
    /* Force a taller, more prestigious presence */
}

.bfai-feature-card-wow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(var(--feature-accent), 0.3), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.bfai-feature-card-wow:hover::before {
    opacity: 1;
}

.bfai-feature-card-wow .card-inner {
    padding: 60px 24px;
    /* Deep vertical padding for luxury feel */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* Perfect vertical centering */
    text-align: center;
    z-index: 10;
    height: 100%;
}

.bfai-feature-card-wow:hover {
    background: rgba(var(--feature-accent), 0.02);
    border-color: rgba(var(--feature-accent), 0.2);
    transform: translateY(-12px);
    box-shadow:
        0 30px 60px -12px rgba(0, 0, 0, 0.8),
        0 0 0 1px rgba(var(--feature-accent), 0.1);
}

.bfai-feature-card-wow .card-glow {
    background: radial-gradient(circle at top, rgba(var(--feature-accent), 0.15), transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.bfai-feature-card-wow:hover .card-glow {
    opacity: 1;
}

.feature-icon {
    width: 80px;
    height: 80px;
    position: relative;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--feature-accent), 0.1);
    border-radius: 24px;
    color: rgb(var(--feature-accent));
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.feature-icon::after {
    content: '';
    position: absolute;
    inset: -2px;
    border: 1px solid rgba(var(--feature-accent), 0.3);
    border-radius: 26px;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.5s ease;
}

.bfai-feature-card-wow:hover .feature-icon {
    transform: translateY(-5px) scale(1.05);
    background: rgba(var(--feature-accent), 0.2);
    box-shadow: 0 0 30px rgba(var(--feature-accent), 0.3);
}

.bfai-feature-card-wow:hover .feature-icon::after {
    opacity: 1;
    transform: scale(1);
}

.feature-title {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.feature-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-muted);
    margin: 0;
    opacity: 0.8;
}


