.testimonials{

padding:90px 0;

background:#f8fafc;

}

.testimonial-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

margin-top:50px;

}

.testimonial-card{

background:#fff;

padding:30px;

border-radius:18px;

border:1px solid var(--border);

box-shadow:var(--shadow);

transition:.3s;

}

.testimonial-card:hover{

transform:translateY(-8px);

border-color:var(--primary);

}

.testimonial-header{

display:flex;

align-items:center;

gap:15px;

margin-bottom:20px;

}

.testimonial-header img{

width:60px;

height:60px;

border-radius:50%;

object-fit:cover;

}

.testimonial-header h3{

font-size:18px;

margin-bottom:4px;

}

.testimonial-header span{

font-size:14px;

color:#64748b;

}

.verified-badge{

margin-left:auto;

background:#e8f5e9;

color:#22c55e;

padding:6px 10px;

border-radius:30px;

font-size:12px;

font-weight:600;

}

.rating{

color:#f59e0b;

font-size:20px;

margin-bottom:15px;

}

.testimonial-card p{

line-height:1.8;

color:#64748b;

}