/* Trust Signals Component Styles - Horizontal Compact Layout */
.trust-centered {
  max-width: 1200px;
  margin: 0 auto;
}

.section.bg-gray-100 {
  padding: 1.5rem 0;
}

/* Service page specific spacing */
.service-page .section.bg-gray-100 {
  padding: 3rem 0;
  margin: 0;
}



.trust-headline {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1rem;
  text-align: center;
}

/* Combined horizontal layout for badges and stats */
.trust-badges-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.trust-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.5rem 0.75rem;
  background: white;
  border-radius: 6px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  width: 140px;
  height: 50px;
  flex-shrink: 0;
}

.trust-badge:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.badge-img {
  width: 20px;
  height: 20px;
  margin-right: 0.5rem;
  object-fit: contain;
  flex-shrink: 0;
}

.badge-icon {
  font-size: 1.125rem;
  color: #3b82f6;
  margin-right: 0.5rem;
  flex-shrink: 0;
}

.badge-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #374151;
  line-height: 1.2;
}

.trust-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.trust-stat {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.5rem 0.75rem;
  background: white;
  border-radius: 6px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  width: 150px;
  height: 50px;
  flex-shrink: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.trust-stat:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.stat-number {
  font-size: 1rem;
  font-weight: 800;
  color: #3b82f6;
  margin-right: 0.4rem;
}

.stat-label {
  font-size: 0.65rem;
  font-weight: 600;
  color: #6b7280;
  line-height: 1.1;
}

.trust-cta {
  text-align: center;
}

.trust-cta .btn-large {
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 700;
}

.cta-note {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: #6b7280;
}

/* Mobile Responsive - Enhanced Layout */
@media (max-width: 768px) {
  .trust-signals-section {
    padding: 2rem 0;
  }
  
  .trust-headline {
    font-size: 2rem;
    margin-bottom: 0.75rem;
  }
  
  .trust-subtitle {
    font-size: 1rem;
  }
  
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .trust-badges-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .trust-badge.featured {
    padding: 1.25rem;
  }
  
  .badge-icon-large {
    width: 40px;
    height: 40px;
    margin-right: 0.75rem;
  }
  
  .badge-icon-large i {
    font-size: 1.25rem;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  
  .trust-stat {
    padding: 1.25rem;
  }
  
  .stat-number {
    font-size: 1.5rem;
  }
  
  .trust-cta .btn-large {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .trust-headline {
    font-size: 1.75rem;
  }
  
  .trust-subtitle {
    font-size: 0.875rem;
  }
  
  .trust-badge.featured {
    padding: 1rem;
  }
  
  .badge-icon-large {
    width: 36px;
    height: 36px;
    margin-right: 0.5rem;
  }
  
  .badge-icon-large i {
    font-size: 1.125rem;
  }
  
  .badge-content h3 {
    font-size: 1rem;
  }
  
  .badge-content p {
    font-size: 0.8rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  
  .trust-stat {
    padding: 1rem;
  }
  
  .stat-number {
    font-size: 1.25rem;
  }
  
  .stat-label {
    font-size: 0.8rem;
  }
} 