/* Comparison Section Enhancements */

.comparison-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 30px auto;
    max-width: 800px;
}

.stat-item {
    text-align: center;
    background: linear-gradient(135deg, #f9f9f9 0%, #f0f9ff 100%);
    padding: 25px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    min-width: 150px;
    border: 1px solid rgba(0,0,0,0.03);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    line-height: 1;
}

.stat-text {
    font-size: 0.95rem;
    color: var(--dark-text);
    font-weight: 500;
}

/* Responsive styles for the comparison section */
@media (max-width: 768px) {
    .comparison-stats {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .stat-item {
        width: 80%;
        max-width: 300px;
        padding: 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .stat-item {
        width: 90%;
        padding: 15px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-text {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .comparison-table {
        font-size: 0.9rem;
    }
    
    .product-logo span {
        font-size: 0.9rem;
    }
    
    .product-tagline {
        font-size: 0.7rem;
    }
    
    .comparison-product i.fas {
        font-size: 1.2rem;
    }
    
    .comparison-product small {
        font-size: 0.65rem;
        max-width: 70px;
    }
}

@media (max-width: 320px) {
    .comparison-product small {
        max-width: 60px;
        font-size: 0.6rem;
    }
    
    .product-logo span {
        font-size: 0.8rem;
    }
    
    .stat-item {
        padding: 12px;
        width: 95%;
    }
    
    .stat-number {
        font-size: 1.6rem;
    }
    
    .stat-text {
        font-size: 0.75rem;
    }
} 