.trust-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #0f1115, #161a22);
  color: #ffffff;
}

.trust-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.trust-text h2 {
  font-size: 36px;
  margin-bottom: 16px;
  line-height: 1.2;
}

.trust-text p {
  font-size: 16px;
  color: #c7c9d1;
  margin-bottom: 24px;
  max-width: 480px;
}

.trust-btn {
  display: inline-block;
  padding: 12px 24px;
  background: #ffffff;
  color: #0f1115;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.trust-btn:hover {
  opacity: 0.85;
}

.trust-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 28px;
  text-align: center;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.stat-number {
  display: block;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: #c7c9d1;
}

