.success-stories-page{
    min-height:80vh;
    padding:50px 6%;
    background:#f8fafc;
}

.success-stories-hero{
    text-align:center;
    margin-bottom:40px;
}

.success-chip{
    display:inline-block;
    padding:8px 18px;
    border-radius:999px;
    background:#dbeafe;
    color:#1d4ed8;
    font-weight:700;
}

.success-stories-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(340px,1fr));
    gap:25px;
}

.success-story-card{
    display:flex;
    flex-direction:column;
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.success-story-image{
    position: relative;
    width: 100%;
    overflow: hidden;
}

.success-story-image img{
    width:100%;
    height:260px;
    object-fit:contain;
    background:#f8fafc;
}

.success-story-badge{
    position:absolute;
    top:15px;
    left:15px;
    background:#16a34a;
    color:#fff;
    padding:8px 14px;
    border-radius:999px;
    font-size:13px;
    font-weight:700;
}

.success-story-content{
    padding:22px;
}

.success-story-content h2{
    margin:10px 0;
}

.success-story-content small{
    display:block;
    margin-top:8px;
    color:#64748b;
}

.success-story-content .btn{
    width:100%;
    margin-top:18px;
}

.success-state{
    grid-column:1/-1;
    text-align:center;
    padding:60px;
}