/* =========================================================
   Company Stats
   ========================================================= */

.company-stats {

    position: relative;

    width: 100%;

    background: #05050d;

    color: #ffffff;

    overflow: hidden;

}

.company-stats::before {

    content: "";

    position: absolute;

    top: 0;
    left: 0;
    right: 0;

    height: 180px;

    background: linear-gradient(
        to bottom,
        #05050d 0%,
        rgba(5, 5, 13, .90) 25%,
        rgba(5, 5, 13, .55) 55%,
        rgba(5, 5, 13, .15) 80%,
        transparent 100%
    );

    pointer-events: none;

    z-index: 1;
}

.company-stats > * {
    position: relative;
    z-index: 2;
}

/* =========================================================
   Background
   ========================================================= */

.company-stats-background {

    position: absolute;

    inset: 0;

    background-image: url("../images/company-stats-bg.png");

    background-size: cover;

    background-position: center;

    opacity: .45;

    pointer-events: none;

}


/* =========================================================
   Container
   ========================================================= */

.company-stats-container {

    position: relative;

    z-index: 2;

    width: min(1180px, calc(100% - 60px));

    margin: 0 auto;

}


/* =========================================================
   Statistics
   ========================================================= */

.company-statistics {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    padding: 85px 0 65px;

}


.company-stat {

    position: relative;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    min-height: 115px;

    text-align: center;

}


.company-stat:not(:last-child)::after {

    content: "";

    position: absolute;

    top: 15px;

    right: 0;

    width: 1px;

    height: 85px;

    background: rgba(255,255,255,.08);

}


.company-stat-value {

    color: #ef1111;

    font-size: 42px;

    font-weight: 400;

    line-height: 1;

    letter-spacing: 2px;

}


.company-stat-label {

    margin-top: 12px;

    color: #ffffff;

    font-size: 13px;

    font-weight: 500;

    line-height: 1.6;

    letter-spacing: 3px;

}


/* =========================================================
   Mission
   ========================================================= */

.company-mission {

    max-width: 900px;

    margin: 20px auto 85px;

    text-align: center;

}


.company-mission p {

    margin: 0;

    color: #ffffff;

    font-size: clamp(27px, 3vw, 42px);

    font-weight: 300;

    line-height: 1.3;

    letter-spacing: 4px;

}


/* =========================================================
   Why Choose Us
   ========================================================= */

.company-advantages-title {

    margin-bottom: 42px;

    color: #ffffff;

    text-align: center;

    font-size: 19px;

    font-weight: 700;

    letter-spacing: 3px;

}


.company-advantages-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    border-top: 1px solid rgba(255,255,255,.12);

    border-left: 1px solid rgba(255,255,255,.12);

}


.company-advantage {

    position: relative;

    min-height: 260px;

    padding: 40px;

    border-right: 1px solid rgba(255,255,255,.12);

    border-bottom: 1px solid rgba(255,255,255,.12);

    transition:
        background .25s ease;

}


.company-advantage:hover {

    background: rgba(239,17,17,.035);

}


.company-advantage-number {

    position: absolute;

    top: 35px;

    right: 35px;

    color: rgba(239,17,17,.55);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1px;

}


.company-advantage h3 {

    margin: 5px 0 28px;

    color: #ffffff;

    font-size: 15px;

    font-weight: 700;

    letter-spacing: 2px;

}


.company-advantage p {

    max-width: 330px;

    margin: 0;

    color: rgba(255,255,255,.58);

    font-size: 14px;

    line-height: 1.8;

}


.company-advantage a {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    margin-top: 30px;

    color: #ffffff;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.2px;

    text-decoration: none;

    transition: color .2s ease;

}


.company-advantage a span {

    color: #ef1111;

    font-size: 17px;

    transition: transform .2s ease;

}


.company-advantage a:hover {

    color: #ef1111;

}


.company-advantage a:hover span {

    transform: translateX(4px);

}


/* =========================================================
   Tablet
   ========================================================= */

@media (max-width: 991px) {

    .company-statistics {

        grid-template-columns:
            repeat(2, 1fr);

        gap: 25px 0;

        padding: 70px 0 50px;

    }


    .company-stat:nth-child(2)::after {

        display: none;

    }


    .company-stat:nth-child(3)::after {

        display: block;

    }


    .company-mission {

        margin-bottom: 65px;

    }


    .company-advantages-grid {

        grid-template-columns: 1fr;

    }


    .company-advantage {

        min-height: 220px;

    }

}


/* =========================================================
   Mobile
   ========================================================= */

@media (max-width: 600px) {

    .company-stats-container {

        width: min(100% - 40px, 500px);

    }


    .company-statistics {

        grid-template-columns: 1fr;

        gap: 0;

        padding: 55px 0 35px;

    }


    .company-stat {

        min-height: 125px;

        padding: 25px 0;

    }


    .company-stat::after {

        display: none !important;

    }


    .company-stat:not(:last-child) {

        border-bottom: 1px solid rgba(255,255,255,.08);

    }


    .company-stat-value {

        font-size: 36px;

    }


    .company-stat-label {

        font-size: 11px;

        letter-spacing: 2.5px;

    }


    .company-mission {

        margin: 30px auto 55px;

    }


    .company-mission p {

        font-size: 24px;

        line-height: 1.45;

        letter-spacing: 2px;

    }


    .company-advantages-title {

        font-size: 16px;

        margin-bottom: 30px;

    }


    .company-advantage {

        padding: 32px 25px;

        min-height: 230px;

    }

}