/* ============================================================
   Home · Security & Compliance band (HomeTrust.jsx)
   Light section. Sits between Cases (dark) and RichContent.
   ============================================================ */
.v-trustband {
  background: #f8f5ed;
  padding: 120px 0;
  border-top: 1px solid rgba(40, 28, 8, .08);
}

.v-trustband__inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 72px;
  align-items: center;
}

.v-trustband__intro .v-section-title {
  margin: 16px 0 0;
  text-align: left;
}
.v-trustband__sub {
  margin: 22px 0 0;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(40, 28, 8, .68);
  max-width: 36em;
  text-wrap: pretty;
}

.v-trustband__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

/* live status pill */
.v-trustband__status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.v-trustband__status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #1f9d57;
  box-shadow: 0 0 0 0 rgba(31, 157, 87, .5);
  animation: v-trustband-pulse 2.4s ease-out infinite;
}
@media (prefers-reduced-motion: no-preference) {
  @keyframes v-trustband-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(31, 157, 87, .5); }
    70%  { box-shadow: 0 0 0 7px rgba(31, 157, 87, 0); }
    100% { box-shadow: 0 0 0 0 rgba(31, 157, 87, 0); }
  }
}

/* pillar grid */
.v-trustband__pillars {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.v-trustband__pillar {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 26px 24px;
  border: 1px solid rgba(40, 28, 8, .1);
  border-radius: 16px;
  background: #fff;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.v-trustband__pillar:hover {
  border-color: var(--vaas-blue);
  transform: translateY(-2px);
  box-shadow: 0 20px 50px -28px rgba(40, 28, 8, .35);
}
.v-trustband__pillar-ic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: var(--vaas-blue-deep);
  color: var(--vaas-lime);
  margin-bottom: 4px;
}
.v-trustband__pillar-t {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--vaas-blue-deep);
  line-height: 1.25;
}
.v-trustband__pillar-d {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(40, 28, 8, .62);
  text-wrap: pretty;
}

/* ---------- responsive ---------- */
@media (max-width: 1080px) {
  .v-trustband { padding: 92px 0; }
  .v-trustband__inner { grid-template-columns: 1fr; gap: 48px; }
  .v-trustband__sub { max-width: none; }
}
@media (max-width: 560px) {
  .v-trustband { padding: 68px 0; }
  .v-trustband__pillars { grid-template-columns: 1fr; }
  .v-trustband__actions .v-btn { width: 100%; justify-content: center; }
}
