/* ==================================================
   BESS PAGE SPECIFIC STYLES
   ================================================== */

.service-block .service-content h4 {
    color: var(--primary-blue-dark);
    margin: var(--space-md) 0 var(--space-sm);
    font-family: var(--font-heading);
    font-weight: 600;
}

.service-card-lite .service-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: var(--space-md);
}

/* Enhanced service points */
.service-points {
    margin-bottom: var(--space-md);
}

.service-points li {
    margin-bottom: var(--space-xs);
}

/* Technology badges */
.tech-badges {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
    margin-top: var(--space-md);
}

.tech-badge {
    background: var(--light);
    color: var(--primary-blue-dark);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(0, 119, 182, 0.1);
}

/* Stats highlight */
.stats-highlight {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-purple));
    color: white;
    padding: var(--space-md);
    border-radius: var(--radius-md);
    margin: var(--space-lg) 0;
    text-align: center;
}

.stats-highlight h3 {
    font-size: 2rem;
    margin-bottom: var(--space-xs);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .service-cards {
        grid-template-columns: 1fr;
    }
    
    .tech-badges {
        justify-content: center;
    }
}