/* ── Trust & Safety Page ── */

.trust-hero {
  background: linear-gradient(135deg, #1a56db 0%, #1e40af 100%);
  color: #fff;
  padding: 64px 0 56px;
  text-align: center;
}

.trust-hero h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin: 0 0 12px;
}

.trust-hero-sub {
  font-size: 1.125rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.trust-section {
  padding: 64px 0;
  background: #f8fafc;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.trust-card {
  background: #fff;
  border-radius: 12px;
  padding: 32px 28px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 4px 12px rgba(0,0,0,0.04);
  transition: box-shadow 0.2s, transform 0.2s;
}

.trust-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}

.trust-card-icon {
  width: 48px;
  height: 48px;
  background: #eff6ff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.trust-card-icon svg {
  width: 24px;
  height: 24px;
  color: #1a56db;
}

.trust-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0 0 10px;
  color: #1e293b;
}

.trust-card p {
  color: #475569;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0 0 14px;
}

.trust-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.trust-card ul li {
  position: relative;
  padding-left: 20px;
  font-size: 0.875rem;
  color: #334155;
  line-height: 1.7;
}

.trust-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: #1a56db;
  border-radius: 50%;
  opacity: 0.7;
}

/* ── CTA Section ── */

.trust-cta {
  background: #fff;
  padding: 64px 0;
  border-top: 1px solid #e2e8f0;
}

.trust-cta-inner {
  text-align: center;
}

.trust-cta h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0 0 12px;
  color: #1e293b;
}

.trust-cta p {
  color: #64748b;
  font-size: 1.0625rem;
  margin: 0 0 24px;
}

.trust-cta-btn {
  display: inline-block;
  background: #1a56db;
  color: #fff;
  padding: 14px 36px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.2s;
}

.trust-cta-btn:hover {
  background: #1e40af;
  color: #fff;
}

/* ── Responsive ── */

@media (max-width: 992px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .trust-hero {
    padding: 48px 20px 40px;
  }
  .trust-hero h1 {
    font-size: 1.75rem;
  }
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .trust-card {
    padding: 24px 20px;
  }
}
