/* =========================================================
   HOME STATS / TRUST SECTION
   ========================================================= */

.home-stats-section {
    width: 100%;
    max-width: 100%;

    background: #ffffff;

    padding: 42px 0 58px;

    position: relative;
    z-index: 2;

    overflow: hidden;
}


/* =========================================================
   CONTAINER - 1200px
   ========================================================= */

.home-stats-section > .container {
    width: 100%;
    max-width: 1200px;

    margin-left: auto;
    margin-right: auto;

    padding-left: 15px;
    padding-right: 15px;
}


/* =========================================================
   STATS GRID
   ========================================================= */

.home-stats-grid {
    width: 100%;
    max-width: 100%;

    display: grid;

    grid-template-columns: repeat(6, minmax(0, 1fr));

    gap: 24px;

    align-items: stretch;
}


/* =========================================================
   STAT CARD
   ========================================================= */

.home-stat-card {
    width: 100%;

    background: #ffffff;

    border-radius: 16px;

    min-height: 232px;

    padding: 28px 18px 24px;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: flex-start;

    text-align: center;

    box-shadow:
        0 10px 30px rgba(15, 23, 42, 0.08);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.home-stat-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 18px 40px rgba(15, 23, 42, 0.14);
}


/* =========================================================
   ICON
   ========================================================= */

.home-stat-icon {
    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 12px;

    color: #1769ff;

    font-size: 42px;

    line-height: 1;
}


/* =========================================================
   VALUE
   ========================================================= */

.home-stat-value {
    color: #050505;

    font-size: 34px;

    font-weight: 800;

    line-height: 1.15;

    margin-bottom: 8px;
}


/* =========================================================
   LABEL
   ========================================================= */

.home-stat-label {
    color: #667085;

    font-size: 16px;

    font-weight: 400;

    line-height: 1.55;

    max-width: 150px;
}


/* =========================================================
   STARS
   ========================================================= */

.home-stat-stars {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 3px;

    margin-top: 12px;

    color: #ffb000;

    font-size: 17px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1199px) {

    .home-stats-section > .container {
        max-width: 960px;
    }

    .home-stats-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));

        gap: 22px;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .home-stats-section {
        padding: 32px 0 42px;
    }

    .home-stats-section > .container {
        width: 100%;
        max-width: 100%;

        padding-left: 20px;
        padding-right: 20px;
    }

    .home-stats-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 16px;
    }

    .home-stat-card {
        min-height: 205px;

        padding: 22px 12px 20px;

        border-radius: 14px;
    }

    .home-stat-icon {
        width: 50px;
        height: 50px;

        font-size: 34px;

        margin-bottom: 10px;
    }

    .home-stat-value {
        font-size: 28px;
    }

    .home-stat-label {
        font-size: 14px;
    }

    .home-stat-stars {
        font-size: 15px;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .home-stats-section > .container {
        max-width: 100%;

        padding-left: 15px;
        padding-right: 15px;
    }

    .home-stats-grid {
        grid-template-columns: 1fr;

        gap: 16px;
    }

    .home-stat-card {
        min-height: auto;

        padding: 24px 15px;
    }
}