/* ==========================================================
   STATISTICS SECTION
========================================================== */

.hcg-statistics-section {

    background: #eef2f6;
    padding: 90px 0 110px;
}


/* ==========================================================
   GRID
========================================================== */

.hcg-statistics-grid {

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 34px;
}


/* ==========================================================
   CARD
========================================================== */

.hcg-statistics-card {

    position: relative;
    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #020817 0%,
            #051733 55%,
            #081225 100%
        ) !important;

    border-radius: 28px;
    padding: 48px 42px;
    min-height: 460px;

    box-shadow:
        0 22px 60px rgba(2,8,23,.18);

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.hcg-statistics-card:hover {

    transform: translateY(-8px);

    box-shadow:
        0 30px 70px rgba(2,8,23,.22);
}


/* ==========================================================
   TOP ORANGE BAR
========================================================== */

.hcg-statistics-card::before {

    content: "";

    position: absolute;
    top: 0;
    left: 34px;

    width: 110px;
    height: 6px;

    border-radius: 0 0 10px 10px;

    background:
        linear-gradient(
            90deg,
            #f97316,
            #fb923c
        );

    z-index: 2;
}


/* ==========================================================
   DOT GRAPHICS
========================================================== */

.hcg-statistics-card::after {

    content: "";

    position: absolute;

    left: 30px;
    bottom: 28px;

    width: 220px;
    height: 140px;

    z-index: 1;

    opacity: .32;

    pointer-events: none;

    background:
        radial-gradient(
            #f97316 1.8px,
            transparent 1.8px
        );

    background-size:
        18px 18px;

    mask-image:
        linear-gradient(
            to right,
            rgba(0,0,0,1),
            rgba(0,0,0,0)
        );

    -webkit-mask-image:
        linear-gradient(
            to right,
            rgba(0,0,0,1),
            rgba(0,0,0,0)
        );
}


/* ==========================================================
   NUMBER
========================================================== */

.hcg-statistics-card .hcg-statistics-number {

    position: relative;
    z-index: 5;

    font-size: 74px !important;
    font-weight: 800 !important;
    line-height: 1 !important;

    letter-spacing: -.04em;

    color: #ffffff !important;

    margin: 10px 0 34px !important;

    opacity: 1 !important;
}


/* ==========================================================
   TITLE
========================================================== */

.hcg-statistics-card .hcg-statistics-title {

    position: relative;
    z-index: 5;

    display: block;

    font-size: 30px !important;
    font-weight: 700 !important;
    line-height: 1.35 !important;

    color: #ff8c2a !important;

    margin: 0 0 22px !important;

    opacity: 1 !important;

    visibility: visible !important;

    text-transform: none !important;
}

.hcg-statistics-card .hcg-statistics-title::after {

    content: "";

    display: block;

    width: 56px;
    height: 4px;

    border-radius: 999px;

    margin-top: 16px;

    background: #ff8c2a;
}


/* ==========================================================
   DESCRIPTION
========================================================== */

.hcg-statistics-card .hcg-statistics-description {

    position: relative;
    z-index: 5;

    display: block;

    font-size: 18px !important;
    font-weight: 400 !important;
    line-height: 1.9 !important;

    color: #ffffff !important;

    margin: 0 !important;

    opacity: 1 !important;

    visibility: visible !important;

    max-width: 92%;
}


/* ==========================================================
   RESPONSIVE
========================================================== */

@media (max-width: 991px) {

    .hcg-statistics-grid {

        grid-template-columns:
            repeat(2, 1fr);
    }
}

@media (max-width: 767px) {

    .hcg-statistics-section {

        padding: 70px 0;
    }

    .hcg-statistics-grid {

        grid-template-columns: 1fr;
    }

    .hcg-statistics-card {

        min-height: auto;
        padding: 34px 28px;
    }

    .hcg-statistics-card .hcg-statistics-number {

        font-size: 54px !important;
    }

    .hcg-statistics-card .hcg-statistics-title {

        font-size: 24px !important;
    }

    .hcg-statistics-card .hcg-statistics-description {

        font-size: 16px !important;
    }
}