/* ==========================================================================
   Trust & Psychology Optimization Styles
   Phase 21: Increase conversion and retention through psychological trust signals
   ========================================================================== */

/* Trust Badge Strip */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  padding: 1rem 0;
  margin: 1.5rem 0;
  border-top: 1px solid rgba(201, 162, 39, 0.2);
  border-bottom: 1px solid rgba(201, 162, 39, 0.2);
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #888;
  font-size: 0.85rem;
}

.trust-badge i {
  color: #c9a227;
  font-size: 1rem;
}

.trust-badge.verified {
  color: #69db7c;
}

.trust-badge.verified i {
  color: #69db7c;
}

/* Social Proof Counter */
.social-proof {
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.1) 0%, rgba(201, 162, 39, 0.05) 100%);
  border: 1px solid rgba(201, 162, 39, 0.3);
  border-radius: 12px;
  padding: 1.5rem;
  margin: 2rem 0;
  text-align: center;
}

.social-proof-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #c9a227;
  line-height: 1;
}

.social-proof-label {
  color: #e0e0e0;
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

.social-proof-detail {
  color: #888;
  font-size: 0.8rem;
  margin-top: 0.25rem;
}

/* What Happens Next Section */
.next-steps {
  background: #0d0d0d;
  border: 1px solid #333;
  border-radius: 12px;
  padding: 1.5rem;
  margin: 2rem 0;
}

.next-steps-title {
  color: #c9a227;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.next-steps-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.next-steps-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(51, 51, 51, 0.5);
  color: #e0e0e0;
  font-size: 0.9rem;
}

.next-steps-list li:last-child {
  border-bottom: none;
}

.next-steps-list .step-num {
  width: 24px;
  height: 24px;
  background: rgba(201, 162, 39, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c9a227;
  font-size: 0.75rem;
  font-weight: 600;
  flex-shrink: 0;
}

.next-steps-list .step-time {
  color: #888;
  font-size: 0.8rem;
  margin-top: 0.25rem;
}

/* Reassurance Message */
.reassurance {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(40, 167, 69, 0.1);
  border: 1px solid rgba(40, 167, 69, 0.3);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  margin: 1rem 0;
  font-size: 0.85rem;
  color: #69db7c;
}

.reassurance i {
  font-size: 1rem;
}

/* Security Indicator */
.security-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 1rem 0;
  padding: 0.75rem;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 8px;
}

.security-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  color: #888;
  font-size: 0.75rem;
}

.security-item i {
  color: #69db7c;
  font-size: 0.8rem;
}

/* Urgency Indicator (subtle, not pushy) */
.availability-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201, 162, 39, 0.15);
  border-radius: 20px;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  color: #c9a227;
  margin-bottom: 1rem;
}

.availability-indicator .pulse {
  width: 8px;
  height: 8px;
  background: #69db7c;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.2); }
}

/* Carrier Incentive Tiers */
.incentive-tiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.tier-card {
  background: #0d0d0d;
  border: 1px solid #333;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.tier-card:hover {
  border-color: #c9a227;
  transform: translateY(-2px);
}

.tier-card.featured {
  border-color: #c9a227;
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.1) 0%, rgba(13, 13, 13, 1) 100%);
}

.tier-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.tier-badge.gold {
  background: rgba(201, 162, 39, 0.2);
  color: #c9a227;
}

.tier-badge.silver {
  background: rgba(192, 192, 192, 0.2);
  color: #c0c0c0;
}

.tier-badge.bronze {
  background: rgba(205, 127, 50, 0.2);
  color: #cd7f32;
}

.tier-score {
  color: #888;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

.tier-benefit {
  color: #e0e0e0;
  font-size: 1.1rem;
  font-weight: 600;
}

.tier-details {
  color: #888;
  font-size: 0.8rem;
  margin-top: 0.5rem;
}

/* Progress Indicator for Multi-Step */
.progress-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 1.5rem 0;
}

.progress-step {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.progress-step .step-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.progress-step.completed .step-dot {
  background: #c9a227;
  color: #0d0d0d;
}

.progress-step.active .step-dot {
  background: rgba(201, 162, 39, 0.3);
  color: #c9a227;
  border: 2px solid #c9a227;
}

.progress-step .step-label {
  color: #888;
  font-size: 0.75rem;
  display: none;
}

@media (min-width: 600px) {
  .progress-step .step-label {
    display: block;
  }
}

.progress-line {
  width: 40px;
  height: 2px;
  background: #333;
}

.progress-line.completed {
  background: #c9a227;
}

/* CTA Microcopy */
.btn-microcopy {
  display: block;
  text-align: center;
  font-size: 0.75rem;
  color: #888;
  margin-top: 0.5rem;
}

.btn-microcopy i {
  color: #69db7c;
  margin-right: 0.25rem;
}

/* Testimonial Mini */
.testimonial-mini {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: #0d0d0d;
  border: 1px solid #333;
  border-radius: 12px;
  padding: 1.25rem;
  margin: 1.5rem 0;
}

.testimonial-mini .quote-icon {
  color: #c9a227;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.testimonial-mini .quote-text {
  color: #e0e0e0;
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.5;
}

.testimonial-mini .quote-author {
  color: #888;
  font-size: 0.8rem;
  margin-top: 0.5rem;
  font-style: normal;
}

/* Login Welcome Message */
.welcome-header {
  text-align: center;
  margin-bottom: 2rem;
}

.welcome-header h2 {
  color: #c9a227;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.welcome-header p {
  color: #888;
  font-size: 0.9rem;
}

/* Trust Footer */
.trust-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  margin-top: 2rem;
}

.trust-footer-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #888;
  font-size: 0.8rem;
}

.trust-footer-item i {
  color: #c9a227;
}

/* Mobile optimizations */
@media (max-width: 430px) {
  .trust-strip {
    gap: 0.75rem;
  }
  
  .trust-badge {
    font-size: 0.75rem;
  }
  
  .social-proof-number {
    font-size: 2rem;
  }
  
  .incentive-tiers {
    grid-template-columns: 1fr;
  }
  
  .security-indicator {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* ========================================
   ACCESSIBILITY: Reduced Motion Support
   ======================================== */
@media (prefers-reduced-motion: reduce) {
  .trust-badge-status,
  .security-indicator i {
    animation: none !important;
    transition: none !important;
  }
}
