

.abbr-sec{
    position:relative;
    overflow:hidden;
    padding:34px 40px 40px;
    background:linear-gradient(
        180deg,
        #eaf4ff 0%,
        #f8fbff 58%,
        #ffffff 100%
    );
}

.abbr-sec,
.abbr-sec *{
    box-sizing:border-box;
}

.abbr-sec-container{
    max-width:1280px;
    margin:0 auto;
}

/* ===========================
   Top Content
=========================== */

.abbr-sec-top{
    max-width:1100px;
    margin:0 auto 34px;
    text-align:center;
}

.abbr-sec-title{
    position:relative;
    margin:0 0 28px;
    color:#05070d;
    line-height:1.2;
}

.abbr-sec-title::after{
    content:"";
    position:absolute;
    left:50%;
    bottom:-12px;
    width:64px;
    height:3px;
    border-radius:20px;
    background:#2d94ed;
    transform:translateX(-50%);
}

.abbr-sec-subtitle{
    max-width:1100px;
    margin:0 auto 14px;
    font-size:18px;
    line-height:1.45;
}

.abbr-sec-subtitle p{
    margin:0;
}

.abbr-sec-content{
    max-width:1100px;
    margin:0 auto;
    text-align:center;
}

.abbr-sec-content-line{
    margin:0 auto 14px;
    font-size:18px;
    line-height:1.45;
}

.abbr-sec-content-line:last-child{
    margin-bottom:0;
}

.abbr-sec-content-line p{
    margin:0;
}

/* ===========================
   Stats Bar
=========================== */

.abbr-sec-stats-main{
    width:100%;
    max-width:1160px;
    margin:34px auto 0;
}

.abbr-sec-stats-grid{
    display:grid;
    grid-template-columns:repeat(5, 1fr);
    overflow:hidden;
    border-radius:10px;
    background:linear-gradient(105deg, #2d94ed 0%, #0c4f83 100%);
    box-shadow:0 10px 24px rgba(37, 119, 194, .32);
}

.abbr-sec-stat-card{
    position:relative;
    min-height:126px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    padding:20px 18px;
    text-align:center;
}

.abbr-sec-stat-card:not(:last-child)::after{
    content:"";
    position:absolute;
    top:28px;
    right:0;
    width:3px;
    height:64px;
    border-radius:20px;
    background:rgba(255, 255, 255, .28);
}

.abbr-sec-stat-icon{
    width:42px;
    height:42px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 8px;
    border-radius:50%;
    background:#1e66de;
}

.abbr-sec-stat-icon img{
    display:block;
    width:100%;
    height:100%;
    object-fit:contain;
}

.abbr-sec-stat-content{
    width:100%;
}

.abbr-sec-stat-number{
    color:#ffffff;
    font-size:26px;
    font-weight:700;
    line-height:1.1;
    margin-bottom:2px;
}

.abbr-sec-stat-label{
    color:#ffffff;
    font-size:15px;
    font-weight:500;
    line-height:1.18;
}


.abbr-sec-stat-card:nth-child(4) .abbr-sec-stat-label{
    max-width: 80px;
}


.abbr-sec-stat-card:nth-child(4) .abbr-sec-stat-content{
    display: flex;
    justify-content: center;
}

/* ===========================
   Responsive
=========================== */

@media(max-width:1199px){
    .abbr-sec-stats-grid{
        grid-template-columns:repeat(5, 1fr);
    }

    .abbr-sec-stat-card{
        padding:18px 12px;
    }

    .abbr-sec-stat-number{
        font-size:24px;
    }

    .abbr-sec-stat-label{
        font-size:14px;
    }
}

@media(max-width:991px){
    .abbr-sec{
        padding:48px 20px 42px;
    }

    .abbr-sec-top{
        margin-bottom:30px;
    }

    .abbr-sec-stats-grid{
        grid-template-columns:repeat(2, 1fr);
        border-radius:12px;
    }

    .abbr-sec-stat-card:not(:last-child)::after{
        display:none;
    }

    .abbr-sec-stat-card{
        border-bottom:1px solid rgba(255, 255, 255, .18);
    }

    .abbr-sec-stat-card:nth-last-child(-n+2){
        border-bottom:0;
    }

    .abbr-sec-stat-card:nth-child(odd){
        border-right:1px solid rgba(255, 255, 255, .18);
    }
}

@media(max-width:767px){
    .abbr-sec{
        padding:42px 16px 38px;
    }

    .abbr-sec-title{
        margin-bottom:24px;
    }

    .abbr-sec-subtitle,
    .abbr-sec-content-line{
        font-size:15px;
        line-height:1.55;
    }

    .abbr-sec-stats-main{
        margin-top:28px;
    }

    .abbr-sec-stats-grid{
        grid-template-columns:1fr;
    }

    .abbr-sec-stat-card{
        min-height:auto;
        padding:22px 18px;
        border-right:0;
        border-bottom:1px solid rgba(255, 255, 255, .18);
    }

    .abbr-sec-stat-card:nth-child(odd){
        border-right:0;
    }

    .abbr-sec-stat-card:last-child{
        border-bottom:0;
    }

    .abbr-sec-stat-icon{
        width:40px;
        height:40px;
    }

    .abbr-sec-stat-number{
        font-size:24px;
    }

    .abbr-sec-stat-label{
        font-size:14px;
    }
}

@media(max-width:480px){
    .abbr-sec{
        padding:36px 14px 34px;
    }

    .abbr-sec-subtitle,
    .abbr-sec-content-line{
        font-size:14px;
    }

    .abbr-sec-stat-number{
        font-size:22px;
    }
}