/* Homepage AI WordPress Suite Styles - Mobile Optimized */
.ai-wp-suite h2 {
    font-size: 38px;
    font-weight: 700;
    margin: 20px 0;
}

.ai-wp-suite .ai-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 999px;
    background: rgba(255,255,255,0.15);
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
}

.ai-wp-suite .ai-wp-list {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
    line-height: 1.8;
}

.ai-wp-suite .ai-wp-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.ai-wp-suite .ai-wp-list i {
    color: #22d3ee;
}

.ai-wp-visual {
    position: relative;
}

.ai-wp-visual .ai-kpi {
    position: absolute;
    right: 40px;
    top: 30px;
    background: rgba(15,23,42,0.85);
    padding: 16px 22px;
    border-radius: 20px;
    text-align: left;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.ai-wp-visual .ai-kpi.secondary {
    left: 0;
    right: auto;
    bottom: 20px;
    top: auto;
    background: rgba(79,70,229,0.9);
}

.ai-wp-visual .ai-kpi strong {
    display: block;
    font-size: 28px;
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .ai-wp-suite h2 {
        font-size: 28px;
    }
    
    .ai-wp-visual .ai-kpi {
        right: 20px;
        top: 20px;
        padding: 12px 18px;
        font-size: 14px;
    }
    
    .ai-wp-visual .ai-kpi.secondary {
        left: 0;
        bottom: 15px;
    }
    
    .ai-wp-visual .ai-kpi strong {
        font-size: 22px;
    }
    
    .ai-wp-suite .ai-wp-list li {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .ai-wp-suite h2 {
        font-size: 24px;
    }
    
    .ai-wp-visual .ai-kpi {
        right: 10px;
        top: 10px;
        padding: 10px 15px;
    }
    
    .ai-wp-visual .ai-kpi strong {
        font-size: 18px;
    }
}

