/* SICO marketing components not covered by shared ecosystem.css/app.css.
   Currently just the trust strip (the stat-row, split, deep-features and
   svc-grid primitives the SICO marketing pages use all live in the shared
   ecosystem.css / app.css already). Loaded only by SICO's _marketing_base. */

.trust-strip-wrap {
  max-width: 1180px;
  margin: -28px auto 0;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 22px;
  background: var(--surface);
}
.trust-item__icon {
  inline-size: 40px;
  block-size: 40px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: var(--primary);
  background: color-mix(in srgb, var(--primary) 12%, var(--surface));
  border: 1px solid color-mix(in srgb, var(--primary) 26%, transparent);
}
.trust-item__icon svg { inline-size: 19px; block-size: 19px; }
.trust-item__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-inline-size: 0;
}
.trust-item__lead {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.2px;
  line-height: 1.25;
}
.trust-item__sub {
  font-size: 12.5px;
  color: var(--fg-muted);
  line-height: 1.4;
}

@media (max-width: 860px) {
  .trust-strip { grid-template-columns: repeat(2, 1fr); }
  .trust-strip-wrap { margin-block-start: -16px; }
}
@media (max-width: 480px) {
  .trust-strip { grid-template-columns: 1fr; }
}

/* Long hero sentences balance into even two-line blocks instead of an
   uneven 3-line stack. (Home acronym sets balance inline; this covers leads.) */
.hero__lead, .hero__acronym { text-wrap: balance; }
