/* PROBLEM */
.problem {
    background: #F8F9FD;
    padding: 75px 5% 80px 5%;
}

.problem .section-headline,
.problem .section-sub {
    color: #001D3F;
}

.problem .section-headline {
    max-width: 558px;
}

.problem .section-sub {
    max-width: 436px;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 42px;
}

.prob-card {
    background: #fff;
    border-radius: 20px;

    padding: 25px;
    border: 1px solid #EAEAEA;
    transition: all .3s;
    position: relative;
    overflow: hidden
}

.prob-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--blue));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s
}

.prob-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .1)
}

.prob-card:hover::before {
    transform: scaleX(1)
}

.prob-icon-wrap {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 9px;
    font-size: 1.5rem
}

.pi-red {
    background: #FFF1F0;
}

.pi-orange {
    background: #FFF7ED;
}

.pi-blue {
    background: #F0F1FF;
}

.prob-card h4 {
    font-size: 18px;
    line-height: 26px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #001D3F;
}

.prob-card p {
    font-size: 13px;
    line-height: 17px;
    color: #1E1E1E;
    font-weight: 400;
    margin-bottom: 12px;
}

.prob-card .prob-stat {
    display: inline-block;
    margin-top: .75rem;
    font-size: 10px;
    line-height: 26px;
    font-weight: 500;
    color: #FF5100;
    background: #FFF1F0;
    padding: 0px 12px;
    border-radius: 20px
}

.wrost-part {
    margin-top: 35px;
    background: linear-gradient(90deg, #3901AE 21.81%, #3B48D4 100%);
    border-radius: 20px;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
    height: 100px;
    grid-column: 1 / -1;
}

.wrost-part .quote {
    font-size: 16px;
    color: #fff;
    font-weight: 400;
    line-height: 22px;
}

.wrost-part .quote strong {
    font-weight: 600;
}