/* ============================================
   TRUSTED BY SECTION
   ============================================ */

.trusted-by-section {
  background: linear-gradient(135deg, #0A2540 0%, #0E3A5F 35%, #1A4D6F 70%, #0D2B45 100%);
  color: #F5F6F7;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.trusted-by-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08) 50%, transparent);
}

.trusted-by-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
  text-align: center;
}

.trusted-by-title {
  font-size: clamp(24px, 3.5vw, 42px);
  font-weight: 300;
  line-height: 1.3;
  margin: 0 0 80px 0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  font-family: 'Inter', sans-serif;
  color: #F5F6F7;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

.trusted-by-logos {
  display: flex;
  flex-direction: column;
  gap: 40px;
  opacity: 0;
  animation: fadeInUp 1s ease 0.2s forwards;
}

.logo-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(40px, 8vw, 100px);
  flex-wrap: wrap;
}

.trusted-logo {
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
  opacity: 0.6;
  filter: grayscale(100%);
}

.trusted-logo:hover {
  color: rgba(255, 255, 255, 0.8);
  opacity: 1;
  filter: grayscale(0%);
  transform: translateY(-2px);
}

.trusted-logo svg,
.trusted-logo img {
  height: 100%;
  width: auto;
  max-width: 260px;
  object-fit: contain;
  filter: inherit;
  opacity: inherit;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .trusted-by-container {
    padding: 0 40px;
  }

  .logo-row {
    gap: clamp(30px, 6vw, 60px);
  }
}

@media (max-width: 768px) {
  .trusted-by-section {
    padding: 80px 0;
  }

  .trusted-by-container {
    padding: 0 30px;
  }

  .trusted-by-title {
    margin-bottom: 60px;
    font-size: clamp(20px, 4vw, 32px);
  }

  .trusted-by-logos {
    gap: 30px;
  }

  .logo-row {
    gap: clamp(20px, 5vw, 40px);
  }

  .trusted-logo {
    height: 40px;
  }
}

@media (max-width: 480px) {
  .trusted-by-section {
    padding: 60px 0;
  }

  .trusted-by-container {
    padding: 0 20px;
  }

  .trusted-by-title {
    margin-bottom: 40px;
  }

  .logo-row {
    flex-direction: column;
    gap: 20px;
  }

  .trusted-logo {
    height: 32px;
  }
}
