/**
 * HyzenPro Stats Widget - Dedicated Styles
 * 
 * Dark stats section (always dark background).
 * Mobile-first responsive design.
 */

/* ========================================
   STATS SECTION - ALWAYS DARK
   ======================================== */

.hyzen-stats {
    padding: 3rem 1rem;
    background: #171717;
    color: #ffffff;
    overflow: hidden;
}

@media (min-width: 768px) {
    .hyzen-stats {
        padding: 4rem 2rem;
    }
}

.hyzen-stats .hyzen-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

/* Stats Grid - Mobile First */
.hyzen-stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
    width: 100%;
}

/* Tablet: 2 columns */
@media (min-width: 480px) {
    .hyzen-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Desktop: 3 columns */
@media (min-width: 768px) {
    .hyzen-stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

/* Large Desktop: 4 columns */
@media (min-width: 1024px) {
    .hyzen-stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hyzen-stat-item {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hyzen-stat-icon {
    margin-bottom: 0.75rem;
    color: #a3a3a3;
}

.hyzen-stat-icon svg {
    width: 28px;
    height: 28px;
}

@media (min-width: 768px) {
    .hyzen-stat-icon svg {
        width: 32px;
        height: 32px;
    }
}

.hyzen-stat-value {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.25rem;
    line-height: 1.2;
}

@media (min-width: 480px) {
    .hyzen-stat-value {
        font-size: 2.5rem;
    }
}

@media (min-width: 768px) {
    .hyzen-stat-value {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .hyzen-stat-value {
        font-size: 3.5rem;
    }
}

.hyzen-stat-label {
    font-size: 0.875rem;
    color: #a3a3a3;
    font-weight: 500;
    text-align: center;
}

@media (min-width: 768px) {
    .hyzen-stat-label {
        font-size: 1rem;
    }
}

/* CTA styles moved to dedicated hyzen-cta.css */

/* ========================================
   MARQUEE SECTION
   ======================================== */

.hyzen-marquee-section {
    padding: 2rem 0;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    background: transparent;
    overflow: hidden;
}

.hyzen-marquee-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #737373;
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.hyzen-marquee-track {
    display: flex;
    animation: hyzen-marquee 30s linear infinite;
}

.hyzen-marquee-track:hover {
    animation-play-state: paused;
}

.hyzen-marquee-item {
    flex: 0 0 auto;
    padding: 0 2rem;
}

.hyzen-marquee-item img {
    height: 2rem;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.hyzen-marquee-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* ========================================
   AD SLOT
   ======================================== */

.hyzen-ad-slot {
    background: #f5f5f5;
    border: 1px dashed #e5e5e5;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    color: #737373;
    font-size: 0.875rem;
}