 /* ─── TESTIMONIALS ─── */
 .testimonials-section {
     background: var(--white);
 }

 .testimonials-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 24px;
 }

 .testi-card {
     background: var(--cream);
     border-radius: 20px;
     padding: 32px 28px;
     border: 1px solid rgba(0, 0, 0, 0.05);
     transition: transform 0.25s;
 }

 .testi-card:hover {
     transform: translateY(-4px);
 }

 .testi-stars {
     color: var(--amber);
     font-size: 14px;
     letter-spacing: 2px;
     margin-bottom: 16px;
 }

 .testi-quote {
     font-size: 15px;
     line-height: 1.7;
     color: #374151;
     margin-bottom: 24px;
     font-style: italic;
 }

 .testi-author {
     display: flex;
     align-items: center;
     gap: 12px;
 }

 .testi-avatar {
     width: 42px;
     height: 42px;
     border-radius: 50%;
     font-size: 18px;
     display: flex;
     align-items: center;
     justify-content: center;
     flex-shrink: 0;
 }

 .testi-name {
     font-size: 14px;
     font-weight: 700;
     color: var(--navy);
 }

 .testi-unit {
     font-size: 12px;
     color: var(--muted);
     margin-top: 2px;
 }