/* ============================================
   Design System - Badges
   Icon badges and small indicators from hero components
   ============================================ */

/* ============================================
   Icon Badges (from hero components)
   Glass morphism badges with icons
   ============================================ */

.icon-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: var(--glass-white-15);
  backdrop-filter: var(--blur-light);
  -webkit-backdrop-filter: var(--blur-light);
  border: var(--glass-border);
  border-radius: var(--radius-full);
  color: white;
  font-weight: var(--font-semibold);
  font-size: var(--text-sm);
}

.icon-badge svg,
.icon-badge-icon {
  width: 20px;
  height: 20px;
  color: #ffc107;
}

.icon-badge-wrapper {
  text-align: center;
}

.icon-badge {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.1);
}

/* ============================================
   Small Indicators (from hero components)
   Tiny trust indicators below CTAs
   ============================================ */

.small-indicators {
  display: flex;
  justify-content: center;
  gap: var(--space-6);
  margin-top: var(--space-6);
  flex-wrap: wrap;
}

.small-indicator {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--text-sm);
}

.small-indicator {
  color: var(--text-secondary);
}

.small-indicator-icon {
  font-size: var(--text-base);
  opacity: 0.8;
}

@media (max-width: 768px) {
  .small-indicators {
    gap: var(--space-4);
  }
}

/* ============================================
   Info Badges Component
   Information display badges
   ============================================ */

/* Info badges container */
.info-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
  margin: 1.5rem 0;
}

/* Individual info badge */
.info-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.8125rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.info-badge:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.info-badge {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

.info-badge:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
}

/* Info badge icon */
.info-badge-icon {
  font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 767px) {
  .info-badges {
    flex-direction: column;
    align-items: stretch;
  }

  .info-badge {
    justify-content: center;
  }
}
