/* Premium Stats Section - Matching GrassID Design */
.premium-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    padding: 3rem 0;
    border-top: 1px solid rgba(232, 245, 233, 0.5);
    margin-top: 2rem;
}

.stat-item {
    background-color: var(--white-color);
    border: 1px solid rgba(232, 245, 233, 0.5);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.stat-value {
    font-size: 3rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    font-family: 'Poppins', sans-serif;
}

.stat-title {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--heading-color); /* Black headings */
    margin-bottom: 0.75rem;
    font-family: 'Poppins', sans-serif;
}

.stat-description {
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.6;
    opacity: 0.8;
}