/* ===================================
   TRUST / SOCIAL PROOF SECTION
   Lyria DNA: Full-bleed breathing section
   =================================== */

.trust {
  background: #080C1C; /* Darker shade than main #0A0E27 for separation */
  position: relative;
  overflow: hidden;
  padding: clamp(6rem, 10vh, 12rem) 0;
}

/* Subtle texture overlay */
.trust::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(77, 101, 255, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(77, 101, 255, 0.02) 0%, transparent 50%);
  pointer-events: none;
}

.trust__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 5vh, 4rem);
}

/* Section Label */
.trust__label {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: -1rem;
}

/* Main Quote */
.trust__quote {
  max-width: 900px;
  margin: 0 auto;
}

.trust__quote-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  letter-spacing: 0.02em;
}

.trust__quote-highlight {
  color: #ffffff;
  position: relative;
  display: inline-block;
}

/* Underline effect on highlight */
.trust__quote-highlight::after {
  content: '';
  position: absolute;
  bottom: 0.1em;
  left: 0;
  width: 100%;
  height: 0.08em;
  background: linear-gradient(90deg, #4d65ff, #7b8fff);
  opacity: 0.6;
}

/* Platform Logos Strip */
.trust__platforms {
  margin-top: 2rem;
}

.trust__platforms-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 1.25rem;
}

.trust__platforms-list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(0.75rem, 2vw, 1.5rem);
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  color: rgba(255, 255, 255, 0.6);
}

.trust__platform {
  font-weight: 500;
  transition: color 0.3s ease;
}

.trust__platform:hover {
  color: rgba(255, 255, 255, 0.9);
}

.trust__platform-dot {
  color: rgba(77, 101, 255, 0.4);
  font-size: 0.6em;
}

/* Stat Cards Grid */
.trust__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 1000px;
  margin: 0 auto;
  margin-top: 2rem;
}

.trust__stat-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 1rem;
  padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 3vw, 2rem);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

/* Accent card (middle one) */
.trust__stat-card--accent {
  background: rgba(77, 101, 255, 0.05);
  border-color: rgba(77, 101, 255, 0.15);
}

.trust__stat-card--accent::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #4d65ff, transparent);
  opacity: 0.6;
}

.trust__stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(77, 101, 255, 0.3);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 10px 40px rgba(77, 101, 255, 0.1);
}

.trust__stat-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 6vw, 4.5rem);
  line-height: 1;
  color: #ffffff;
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.trust__stat-card--accent .trust__stat-number {
  color: #4d65ff;
}

.trust__stat-label {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
}

.trust__stat-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.4;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .trust {
    padding: clamp(4rem, 8vh, 6rem) 0;
  }

  .trust__stats {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .trust__quote-text {
    font-size: clamp(1.75rem, 8vw, 2.5rem);
  }

  .trust__platforms-list {
    gap: 0.5rem 1rem;
    font-size: 0.9rem;
  }
}

/* Tablet breakpoint */
@media (min-width: 769px) and (max-width: 1024px) {
  .trust__stats {
    grid-template-columns: repeat(3, 1fr);
  }
}
