/* ==========================================================================
   Section 00-B: Trust Strip (Below Hero) Stylesheet
   ========================================================================== */

.trust-strip-section {
  position: relative;
  z-index: 10;
  margin-top: -53px;
  margin-bottom: -53px;
  padding: 0;
  background: transparent !important;
  border: none !important;
}

.trust-strip-container {
  width: 75%;
  margin: 0 auto;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  padding: 16px 28px;
  transition: box-shadow 0.3s ease;
}

.trust-strip-container:hover {
  box-shadow: 0 16px 40px rgba(38, 93, 245, 0.08);
}

.trust-col {
  display: flex;
  justify-content: center;
  align-items: center;
}

.trust-stat-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 8px 24px;
  width: 100%;
  justify-content: center;
  transition: transform 0.25s ease;
}

.trust-stat-card:hover {
  transform: translateY(-2px);
}

.border-md-left {
  border-left: 1px solid #E2E8F0;
}

.trust-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  flex-shrink: 0;
}

.icon-blue {
  background: rgba(38, 93, 245, 0.08);
  color: #265DF5;
}

.icon-teal {
  background: rgba(14, 165, 233, 0.08);
  color: #0EA5E9;
}

.icon-green {
  background: rgba(16, 185, 129, 0.08);
  color: #10B981;
}

.trust-stat-content {
  display: flex;
  flex-direction: column;
}

.trust-stat-number {
  font-size: 1.85rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.stat-blue {
  color: #265DF5;
}

.stat-teal {
  color: #0EA5E9;
}

.stat-green {
  color: #10B981;
}

.trust-stat-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #475569;
  margin-top: 2px;
  white-space: nowrap;
}

@media (max-width: 991.98px) {
  .trust-strip-container {
    width: 100%;
    padding: 12px 16px;
  }

  .border-md-left {
    border-left: none;
    border-top: 1px dashed #E2E8F0;
    padding-top: 12px;
  }

  .trust-stat-card {
    justify-content: flex-start;
    padding: 6px 12px;
  }

  .trust-stat-number {
    font-size: 1.5rem;
  }
}

@media (max-width: 575.98px) {
  .trust-strip-section {
    margin-top: -30px;
    margin-bottom: -30px;
  }

  .trust-strip-container {
    padding: 10px 12px;
    border-radius: 16px;
  }

  .trust-stat-card {
    justify-content: flex-start;
    padding: 6px 8px;
    gap: 12px;
  }

  .trust-icon-box {
    width: 44px;
    height: 44px;
    font-size: 1.25rem;
    border-radius: 12px;
  }

  .trust-stat-number {
    font-size: 1.35rem;
  }

  .trust-stat-label {
    font-size: 0.825rem;
  }
}