/* ==========================================================================
   Trust Points Bar / 4 Pillars Styles (trust-pillars.css)
   ========================================================================== */

.trust-pillars-section {
  background-color: #f8fafc;
  padding: 3rem 0 2.25rem 0;
  position: relative;
}
.trust-pillars-card {
  background-color: #ffffff;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.06);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 2.25rem 1rem;
  margin-bottom: 1.25rem;
}
.trust-pillar-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0.5rem 1.25rem;
  border-right: 1px solid #e2e8f0;
  transition: transform var(--trans-fast);
}
.trust-pillar-col:last-child {
  border-right: none;
}
.trust-pillar-icon-wrap {
  margin-bottom: 1.25rem;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80px;
}
.pillar-icon-svg {
  width: 80px;
  height: 80px;
  stroke: #d97706;
  transition: transform var(--trans-fast);
}
.trust-pillar-col:hover .pillar-icon-svg {
  transform: scale(1.08);
}
.trust-pillar-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  color: #0f172a;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 0.45rem;
  line-height: 1.25;
}
.trust-pillar-desc {
  font-size: 0.835rem;
  color: #475569;
  line-height: 1.45;
  margin: 0;
}
.highlight-gold {
  color: #d97706;
  font-weight: 700;
}
.trust-pillars-footnote {
  text-align: center;
  font-size: 0.78rem;
  color: #64748b;
  margin: 0;
  letter-spacing: 0.01em;
}

@media (max-width: 1024px) {
  .trust-pillars-card {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 0;
  }
  .trust-pillar-col:nth-child(2) {
    border-right: none;
  }
  .trust-pillar-col:nth-child(3),
  .trust-pillar-col:nth-child(4) {
    border-top: 1px solid #e2e8f0;
    padding-top: 1.5rem;
  }
}

@media (max-width: 768px) {
  .trust-pillars-card {
    grid-template-columns: 1fr;
    gap: 1.75rem 0;
    padding: 1.75rem 1rem;
  }
  .trust-pillar-col {
    border-right: none !important;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 1.5rem;
  }
  .trust-pillar-col:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}
