/* FZ Group — Statistik / counter (Company home) — dengan lekukan ombak atas */

.fz-stats {
    position: relative;
    margin: clamp(48px, 7vw, 100px) 0 clamp(40px, 6vw, 90px);
    overflow: hidden;
}

/* Ombak putih memisahkan section di atas (sama seperti theme-counter Boltu) */
.fz-stats__wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: clamp(72px, 11vw, 196px);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    z-index: 4;
    pointer-events: none;
}

.fz-stats__bg {
    position: absolute;
    inset: 0;
    background-color: #0a1020;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.fz-stats__scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        -85deg,
        rgba(58, 111, 212, 0.82) 0%,
        rgba(75, 139, 249, 0.78) 50%,
        rgba(28, 153, 254, 0.75) 100%
    );
    pointer-events: none;
}

.fz-stats__glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 55% 45% at 20% 50%, rgba(75, 139, 249, 0.15) 0%, transparent 55%),
        radial-gradient(ellipse 50% 40% at 80% 50%, rgba(28, 153, 254, 0.12) 0%, transparent 50%);
}

.fz-stats__inner {
    position: relative;
    z-index: 2;
    /* Ruang di bawah ombak agar kartu tidak tertutup */
    padding: clamp(100px, 16vw, 200px) 0 clamp(48px, 7vw, 113px);
}

.fz-stats__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(12px, 2vw, 24px);
    align-items: stretch;
}

/* Kartu bulat seperti theme-counter .single-box .wrapper */
.fz-stats-card {
    text-align: center;
    margin: 0;
    padding: clamp(36px, 5vw, 42px) clamp(16px, 3vw, 24px) clamp(42px, 5vw, 50px);
    border-radius: 45px;
    background: var(--fz-gradient, linear-gradient(178deg, #4b8bf9 0%, #1c99fe 100%));
    border: none;
    box-shadow: 0 0 30px rgba(67, 67, 67, 0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fz-stats-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(75, 139, 249, 0.4);
}

.fz-stats-card[data-stat="1"] {
    background: linear-gradient(178deg, #3a6fd4 0%, #4b8bf9 100%);
}

.fz-stats-card[data-stat="2"] {
    background: linear-gradient(178deg, #1c99fe 0%, #38bdf8 100%);
}

.fz-stats-card__icon {
    display: block;
    margin: 0 auto;
    font-size: clamp(2.75rem, 5vw, 60px);
    line-height: 1;
    color: #fff;
}

.fz-stats-card__label {
    margin: 0 !important;
    padding: clamp(18px, 3vw, 22px) 0 clamp(24px, 4vw, 35px) !important;
    font-size: clamp(0.95rem, 2vw, 1.125rem) !important;
    font-weight: 600 !important;
    line-height: 1.4 !important;
    color: #fff !important;
}

.fz-stats-card__value {
    margin: 0 !important;
    padding: 0 !important;
    font-size: clamp(2rem, 5vw, 50px) !important;
    font-weight: 700 !important;
    line-height: 1.1 !important;
    color: #fff !important;
    font-family: inherit;
}

.fz-stats-card__value .timer {
    display: inline;
}

@media (max-width: 991px) {
    .fz-stats__inner {
        padding-top: clamp(88px, 14vw, 160px);
        padding-bottom: clamp(40px, 6vw, 80px);
    }

    .fz-stats__grid {
        gap: 16px;
    }
}

@media (max-width: 767px) {
    .fz-stats {
        margin-top: 40px;
    }

    .fz-stats__wave {
        height: clamp(56px, 14vw, 95px);
    }

    .fz-stats__grid {
        grid-template-columns: 1fr;
        max-width: 360px;
        margin: 0 auto;
    }

    .fz-stats-card {
        border-radius: 32px;
    }
}
