.compliance-trust-banner__icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(79, 70, 229, 0.1);
    color: var(--primary-color);
}

/* --- B2B Trust Banner Styles --- */
.b2b-trust-section {
  padding: 4rem 1rem;
  border-top: 1px solid var(--border-color);
  position: relative;
  width: 100%;
}

.b2b-trust-card {
  margin: 0 auto;
  max-width: 800px;
  background: linear-gradient(to bottom right, rgba(99, 102, 241, 0.05), var(--bg-color));
  padding: 2rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(99, 102, 241, 0.1);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

html.dark .b2b-trust-card {
  background: linear-gradient(to bottom right, rgba(99, 102, 241, 0.1), var(--surface-color));
  border-color: rgba(99, 102, 241, 0.2);
}

@media (min-width: 640px) {
  .b2b-trust-card {
    padding: 2.5rem;
  }
}

.b2b-trust-card-bg {
  position: absolute;
  right: -2rem;
  top: -2rem;
  width: 8rem;
  height: 8rem;
  background-color: rgba(99, 102, 241, 0.1);
  border-radius: 9999px;
  filter: blur(24px);
  pointer-events: none;
}

.b2b-trust-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.b2b-trust-icon {
  font-size: 1.875rem;
}

.b2b-trust-content p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.b2b-trust-content p strong {
  color: var(--text-main);
  font-weight: 700;
}

@media (max-width: 640px) {
  .b2b-trust-card {
    padding: 1.25rem 1rem !important;
    border-radius: 1rem !important;
    margin-bottom: 0 !important;
  }
  .b2b-trust-section {
    padding: 3rem 0.5rem !important;
  }
}

