/* --- СТИЛІ ДЛЯ СТОРІНКИ РІШЕНЬ --- */
.modern-solutions-wrapper {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}
.solution-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0,0,0,0.03);
}
.solution-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(252, 163, 17, 0.15);
}
.solution-img-wrap {
    overflow: hidden;
    position: relative;
    height: 220px;
}
.solution-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.solution-card:hover .solution-img-wrap img {
    transform: scale(1.08);
}
.solution-body {
    padding: 30px 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.solution-title {
    color: #14213d;
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 15px;
    line-height: 1.3;
}
.solution-desc {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}
.solution-btn {
    display: inline-flex;
    align-items: center;
    color: #392ec9;
    font-weight: 700;
    text-decoration: none;
    font-size: 15px;
    transition: 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.solution-btn span {
    display: inline-block;
    margin-left: 8px;
    transition: transform 0.3s;
}
.solution-card:hover .solution-btn {
    color: #fca311;
}
.solution-card:hover .solution-btn span {
    transform: translateX(8px);
}
.pulse-banner {
    transition: 0.4s;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    display: inline-block;
}
.pulse-banner:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}
.section-heading-line {
    width: 60px;
    height: 4px;
    background: #fca311;
    margin: 20px auto 40px;
    border-radius: 2px;
}