.retirement-group{
    margin-bottom:22px;
}

.retirement-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:15px;
}

.retirement-range{
    width:100%;
    accent-color:#007f5f;
    cursor:pointer;
    margin-bottom:10px;
}

.currency-toggle{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
    margin-top:10px;
}

.currency-btn{
    flex:1;
    min-width:80px;
    border:none;
    padding:12px;
    border-radius:14px;
    background:#ffffff;
    color:#007f5f;
    font-weight:700;
    cursor:pointer;
    transition:0.4s;
}

.currency-btn:hover{
    transform:translateY(-4px);
}

.currency-btn.active{
    background:#007f5f;
    color:#ffffff;
}

.retirement-cards{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
    margin-top:25px;
}

.retirement-card{
    background:rgba(255,255,255,0.15);
    backdrop-filter:blur(10px);
    border-radius:18px;
    padding:20px;
    transition:0.4s;
}

.retirement-card:hover{
    transform:translateY(-6px);
}

.retirement-card-title{
    font-size:14px;
    opacity:0.9;
    margin-bottom:10px;
    font-weight:600;
}

.retirement-card-value{
    font-size:24px;
    font-weight:700;
}

.retirement-progress-wrapper{
    margin-top:28px;
}

.retirement-progress-text{
    margin-bottom:10px;
    font-size:15px;
}

.retirement-progress{
    width:100%;
    height:18px;
    background:rgba(255,255,255,0.2);
    border-radius:40px;
    overflow:hidden;
}

.retirement-progress-bar{
    height:100%;
    width:0%;
    background:#ffffff;
    border-radius:40px;
    transition:1s ease;
}

.retirement-chart{
    height:260px;
    margin-top:35px;
    display:flex;
    align-items:flex-end;
    gap:14px;
}

.chart-bar{
    flex:1;
    background:rgba(255,255,255,0.25);
    border-radius:14px 14px 0 0;
    position:relative;
    transition:0.4s;
}

.chart-bar:hover{
    background:#ffffff;
}

.chart-value{
    position:absolute;
    top:-25px;
    width:100%;
    text-align:center;
    font-size:11px;
}

.chart-label{
    position:absolute;
    bottom:-28px;
    width:100%;
    text-align:center;
    font-size:12px;
}

.retirement-tip{
    margin-top:35px;
    background:rgba(255,255,255,0.15);
    padding:18px;
    border-radius:18px;
    line-height:1.7;
    font-size:15px;
}