/* SOLUTION */
.solution {
    background: #001D3F;
    position: relative;
    overflow: hidden;
}

.solution .hero-bg {
    opacity: .5
}

.solution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2
}

.solution-content .section-headline {
    color: #fff;
    max-width: 472px;
}

.solution-content .section-sub {
    color: #6C91BD;
    max-width: 481px;
}

.solution-features {
    margin-top: 39px;
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.sol-feat {
    display: flex;
    align-items: flex-start;
    gap: 14px
}

.sol-feat-icon {
    width: 40px;
    height: 40px;
    border-radius: 11px;
    background: #142751;
    border: 1px solid #222F57;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0
}

.sol-feat-text h5 {
    font-size: 18px;
    line-height: 26px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 3px
}

.sol-feat-text p {
    font-size: 13px;
    line-height: 17px;
    font-weight: 400;
    color: #96A4B4;
}

.solution-visual {
    position: relative;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center
}

.sol-glass-card {
    background: rgba(255, 255, 255, .07);
    backdrop-filter: blur(20px);
    border: 1px solid #293E67;
    border-radius: 24px;
    padding: 2rem;
    width: 300px;
    position: absolute
}

.sgc1 {
    top: 5%;
    left: 10%;
    z-index: 3
}

.sgc2 {
    bottom: 2%;
    right: 5%;
    z-index: 2
}

.sgc3 {
    top: 30%;
    right: 15%;
    z-index: 1;
    background: rgba(57, 1, 174, .15);

    width: 180px;
    padding: 1.25rem;
    top: 45%;
    left: 35%;
    animation: float 5s ease-in-out .5s infinite;
}

.sgc-title {
    font-size: 12px;
    line-height: 22px;
    color: #6C91BD;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 20%;
    margin-bottom: .75rem
}

.sgc-amount {
    font-size: 20px;
    line-height: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: .25rem
}

.sgc-sub {
    font-size: 12px;
    line-height: 18px;
    font-weight: 400;
    color: #6C91BD
}

.sgc-bar {
    height: 4px;
    border-radius: 2px;
    background: rgba(255, 255, 255, .1);
    margin-top: 1rem;
    overflow: hidden
}

.sgc-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #3A0DB4 25.79%, #3B3DCE 100%);
    border-radius: 2px;
    animation: barFill 3s ease-in-out infinite alternate
}

@keyframes barFill {
    from {
        width: 40%
    }

    to {
        width: 90%
    }
}

.sgc-status {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: .75rem;
    font-size: 12px;
    line-height: 26px;
    font-weight: 400;
    color: #fff;
}

.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #4ade80
}