.trust-section {
  position: relative;
  padding: 28px 0 72px;
  background:
    radial-gradient(circle at top left, rgba(14, 165, 233, 0.12), transparent 32%),
    radial-gradient(circle at bottom right, rgba(37, 99, 235, 0.10), transparent 28%),
    linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.trust-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(30, 41, 59, 0.96));
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.16);
}

.trust-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(14, 165, 233, 0.16), transparent 40%),
    linear-gradient(315deg, rgba(37, 99, 235, 0.12), transparent 35%);
  pointer-events: none;
}

.trust-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.25fr 0.95fr;
  gap: 28px;
  padding: 34px;
}

.trust-copy {
  color: #e2e8f0;
}

.trust-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #7dd3fc;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.trust-title {
  margin: 0;
  font-size: 34px;
  line-height: 1.15;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.03em;
}

.trust-text {
  max-width: 58ch;
  margin: 14px 0 0;
  color: #cbd5e1;
  font-size: 15px;
  line-height: 1.8;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.trust-badges span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.20);
  color: #f8fafc;
  font-size: 13px;
  font-weight: 600;
  backdrop-filter: blur(8px);
}

.trust-stats {
  display: grid;
  gap: 14px;
}

.trust-stat {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 18px 17px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
  backdrop-filter: blur(12px);
}

.trust-stat h5 {
  margin: 0;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.25;
}

.trust-stat p {
  margin: 6px 0 0;
  font-size: 13px;
  line-height: 1.65;
  color: #cbd5e1;
}

.trust-stat.stat-primary {
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.22), rgba(37, 99, 235, 0.18));
  border-color: rgba(125, 211, 252, 0.22);
}

.stat-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  flex: 0 0 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  color: #7dd3fc;
  font-size: 18px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.trust-stat.stat-primary .stat-icon {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

@media (max-width: 992px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-title {
    font-size: 30px;
  }
}

@media (max-width: 768px) {
  .trust-section {
    padding: 18px 0 54px;
  }

  .trust-grid {
    padding: 24px;
    gap: 20px;
  }

  .trust-panel {
    border-radius: 22px;
  }

  .trust-title {
    font-size: 26px;
  }

  .trust-text {
    font-size: 14px;
  }

  .trust-badges span {
    width: 100%;
    justify-content: flex-start;
  }
}

@media (max-width: 576px) {
  .trust-grid {
    padding: 18px;
  }

  .trust-title {
    font-size: 23px;
  }

  .trust-stat {
    padding: 16px;
  }

  .trust-stat h5 {
    font-size: 15px;
  }
}
