/* ============================================
   TRUST BADGES BAR - Conversion Optimization
   ============================================ */

.trust-badges-bar {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-top: 1px solid #e9ecef;
  border-bottom: 1px solid #e9ecef;
  padding: 2rem 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.trust-badges-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  align-items: center;
  justify-items: center;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.75rem 1rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  min-width: 160px;
}

.trust-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.badge-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #4A6E1A 0%, #5a8020 100%);
  border-radius: 10px;
  color: white;
}

.trust-badge:nth-child(2) .badge-icon {
  background: linear-gradient(135deg, #D97000 0%, #ff8c00 100%);
}

.trust-badge:nth-child(2) .badge-icon svg {
  fill: white;
  stroke: none;
}

.trust-badge:nth-child(3) .badge-icon {
  background: linear-gradient(135deg, #4A6E1A 0%, #5a8020 100%);
}

.trust-badge:nth-child(4) .badge-icon {
  background: linear-gradient(135deg, #2c5282 0%, #3b6ba5 100%);
}

.trust-badge:nth-child(5) .badge-icon {
  background: linear-gradient(135deg, #059669 0%, #10b981 100%);
}

.badge-content {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  line-height: 1.2;
}

.badge-content strong {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1e293b;
  letter-spacing: -0.01em;
}

.badge-content span {
  font-size: 0.75rem;
  color: #64748b;
  font-weight: 500;
}

/* Animation on scroll */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.trust-badge {
  animation: fadeInUp 0.6s ease-out backwards;
}

.trust-badge:nth-child(1) { animation-delay: 0.1s; }
.trust-badge:nth-child(2) { animation-delay: 0.2s; }
.trust-badge:nth-child(3) { animation-delay: 0.3s; }
.trust-badge:nth-child(4) { animation-delay: 0.4s; }
.trust-badge:nth-child(5) { animation-delay: 0.5s; }

/* Tablet Responsive */
@media (max-width: 768px) {
  .trust-badges-bar {
    padding: 1.5rem 0;
  }

  .trust-badges-container {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
    padding: 0 1rem;
  }

  .trust-badge {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
    padding: 0.875rem 0.75rem;
    min-width: 130px;
  }

  .badge-icon {
    width: 36px;
    height: 36px;
  }

  .badge-icon svg {
    width: 24px;
    height: 24px;
  }

  .badge-content strong {
    font-size: 0.875rem;
  }

  .badge-content span {
    font-size: 0.7rem;
  }
}

/* Mobile Responsive */
@media (max-width: 480px) {
  .trust-badges-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .trust-badge {
    padding: 0.75rem 0.5rem;
    min-width: 120px;
  }

  .badge-icon {
    width: 32px;
    height: 32px;
  }

  .badge-icon svg {
    width: 20px;
    height: 20px;
  }

  .badge-content strong {
    font-size: 0.8rem;
  }

  .badge-content span {
    font-size: 0.65rem;
  }
}
