.trust-us {
  padding: var(--spacing-lg) var(--spacing-sm);
  background: #f9fafc; /* No variable provided for this exact color, kept as-is */
}

.trust-container {
  max-width: var(--container-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--gap-lg);
  align-items: center;
}

.trust-text {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.trust-text.show {
  opacity: 1;
  transform: translateX(0);
}

.trust-text h2 {
  font-size: 2.5rem;
  color: var(--brand-dark); /* replaced #0f172a */
  margin-bottom: 10px;
}

.trust-subtitle {
  font-size: 1.2rem;
  color: var(--primary); /* replaced #007bff */
  margin-bottom: 20px;
  font-weight: 500;
}

.trust-text p {
  color: var(--text-dark); /* replaced #444 */
  line-height: 1.7;
  font-size: 1rem;
}

.trust-skills .skill {
  margin-bottom: 25px;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.trust-skills .skill.show {
  opacity: 1;
  transform: translateY(0);
}

.trust-skills .skill span {
  font-weight: 600;
  color: var(--text-dark); /* replaced #222 */
  font-size: 1rem;
  display: block;
  margin-bottom: 8px;
}

.progress-bar {
  width: 100%;
  height: 10px;
  background: #e5e7eb; /* no variable, left as is */
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}

.progress {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--primary), #00bfff); /* gradient start replaced */
  border-radius: var(--radius-md);
  transition: width 1.5s ease;
}

.skill .percent {
  position: absolute;
  right: 0;
  top: -5px;
  font-size: 0.9rem;
  color: var(--primary); /* replaced #007bff */
  font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
  .trust-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .skill .percent {
    right: -5px;
  }
}
