.references-page {
    padding: 70px 20px;
}


/* HEADER */

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h1 {
    font-size: 42px;
}

.section-header .desc {
    margin-top: 15px;
    color: #64748b;
}


/* GRID */

.references-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(200px,1fr));
    gap: 25px;
    margin: 40px 0 80px;
}

.reference-card {
    background: white;
    padding: 25px 15px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0,0,0,.08);
    transition: .3s;
}

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

.reference-card img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 12px;
}

.reference-card h4 {
    font-size: 15px;
}


/* STATS */

.reference-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
    gap: 25px;
    margin-bottom: 80px;
}

.stat-box {
    background: #4ab97c;
    color: white;
    padding: 35px 20px;
    border-radius: 16px;
    text-align: center;
}

.stat-box h3 {
    font-size: 32px;
}


/* CTA */

.reference-cta {
    background: linear-gradient(135deg,#be25b1,#0e1a86);
    color: white;
    padding: 70px 30px;
    border-radius: 20px;
    text-align: center;
}

.reference-cta h2 {
    font-size: clamp(24px,4vw,36px);
}

.reference-cta p {
    margin: 15px 0 25px;
}

.btn-primary {
    background: rgba(11, 11, 11, 0.247);
    color: #020617;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
}

.btn-primary:hover {
    opacity: .9;
}

.references-page-bg {
    background: linear-gradient(180deg, #00e8cd 0%, #0ea7ef 100%);
    min-height: 100vh;
}

@media (max-width:768px){

.reference-stats{
    grid-template-columns:1fr 1fr;
}

.stat-box h3{
    font-size:26px;
}

.reference-cta{
    padding:50px 20px;
}

}