
  .fxd-testimonials-section {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  }
  
  .fxd-testimonials-header {
    text-align: center;
    margin-bottom: 50px;
  }
  
  .fxd-testimonials-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
  }
  
  .fxd-testimonials-header p {
    font-size: 18px;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
  }
  
  .fxd-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 24px;
  }
  
  .fxd-testimonial-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05), 0 10px 15px -3px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f1f5f9;
    position: relative;
    overflow: hidden;
  }
  
  .fxd-testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.08), 0 10px 10px -5px rgba(0,0,0,0.04);
  }
  
  .fxd-testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    right: 24px;
    font-size: 80px;
    color: #e2e8f0;
    font-family: Georgia, serif;
    line-height: 1;
  }
  
  .fxd-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 16px;
  }
  
  .fxd-star {
    color: #f59e0b;
    font-size: 18px;
  }
  
  .fxd-testimonial-text {
    font-size: 15px;
    color: #475569;
    line-height: 1.75;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
  }
  
  .fxd-testimonial-footer {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
  }
  
  .fxd-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
  }
  
  .fxd-avatar.green { background: linear-gradient(135deg, #10b981, #059669); }
  .fxd-avatar.purple { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
  .fxd-avatar.orange { background: linear-gradient(135deg, #f97316, #ea580c); }
  .fxd-avatar.red { background: linear-gradient(135deg, #ef4444, #dc2626); }
  .fxd-avatar.teal { background: linear-gradient(135deg, #14b8a6, #0d9488); }
  .fxd-avatar.pink { background: linear-gradient(135deg, #ec4899, #db2777); }
  .fxd-avatar.indigo { background: linear-gradient(135deg, #6366f1, #4f46e5); }
  .fxd-avatar.cyan { background: linear-gradient(135deg, #06b6d4, #0891b2); }
  .fxd-avatar.amber { background: linear-gradient(135deg, #f59e0b, #d97706); }
  .fxd-avatar.rose { background: linear-gradient(135deg, #f43f5e, #e11d48); }
  .fxd-avatar.emerald { background: linear-gradient(135deg, #34d399, #059669); }
  
  .fxd-client-info h4 {
    font-size: 15px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 2px 0;
  }
  
  .fxd-client-info span {
    font-size: 13px;
    color: #94a3b8;
  }
  
  .fxd-product-tag {
    display: inline-block;
    margin-top: 12px;
    padding: 4px 12px;
    background: #eff6ff;
    color: #2563eb;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    letter-spacing: 0.3px;
  }
  
  .fxd-stats-bar {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 50px;
    flex-wrap: wrap;
  }
  
  .fxd-stat-item {
    text-align: center;
  }
  
  .fxd-stat-number {
    font-size: 40px;
    font-weight: 800;
    color: #1e293b;
    line-height: 1;
  }
  
  .fxd-stat-label {
    font-size: 14px;
    color: #64748b;
    margin-top: 6px;
  }
  
  @media (max-width: 768px) {
    .fxd-testimonials-grid {
      grid-template-columns: 1fr;
    }
    .fxd-testimonials-header h2 {
      font-size: 28px;
    }
    .fxd-stats-bar {
      gap: 30px;
    }
    .fxd-stat-number {
      font-size: 32px;
    }
  }
