
/* Trust / accreditation band — replaces floaty white card strip */
.trust-band {
  background: var(--bg-soft, #f4f7fb);
  border-block: 1px solid var(--line, #e3e8ef);
  padding: 2.5rem 0 2.75rem;
}
.trust-band--navy {
  background: var(--navy, #0b2340);
  border: 0;
  color: #fff;
}
.trust-band--navy .trust-band__label { color: rgba(255,255,255,.72); }
.trust-band__inner {
  width: min(100% - 2rem, 1120px);
  margin-inline: auto;
  text-align: center;
}
.trust-band__title {
  margin: 0 0 0.35rem;
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  max-width: 36ch;
  margin-inline: auto;
}
.trust-band__label {
  margin: 0 0 1.5rem;
  font-size: 0.92rem;
  color: var(--muted, #5b677a);
}
.trust-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.25rem 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.trust-logos li {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
}
.trust-logos img {
  max-height: 72px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  display: block;
}
.trust-band--navy .trust-logos img {
  /* keep logos as-is on dark — they have white/light backgrounds baked in; use soft white pill behind */
  background: #fff;
  border-radius: 10px;
  padding: 0.45rem 0.65rem;
  box-shadow: 0 4px 14px rgba(0,0,0,.12);
}
@media (max-width: 640px) {
  .trust-logos img { max-height: 56px; max-width: 96px; }
  .trust-logos { gap: 0.85rem 1.1rem; }
}

/* Generator names: acc-band + cert-logos (same visual system) */
.acc-band {
  border-block: 1px solid var(--line, #e3e8ef);
  padding: 2.5rem 0 2.75rem;
}
.acc-band--soft { background: var(--bg-soft, #f4f7fb); }
.acc-band--navy {
  background: var(--navy, #0b2340);
  border: 0;
  color: #fff;
}
.acc-band--navy .acc-band__isos { color: rgba(255,255,255,.72); }
.acc-band__inner {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  text-align: center;
}
@media (min-width: 900px) {
  .acc-band__inner {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    text-align: left;
    gap: 2rem;
  }
}
.acc-band__copy h2 {
  margin: 0 0 0.4rem;
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  max-width: 28ch;
}
.acc-band__isos {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted, #5b677a);
}
.cert-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem 1.5rem;
}
@media (min-width: 900px) {
  .cert-logos { justify-content: flex-end; }
}
.cert-logos img {
  max-height: 72px;
  width: auto;
  max-width: 110px;
  object-fit: contain;
  display: block;
  background: #fff;
  border-radius: 10px;
  padding: 0.4rem 0.55rem;
  box-shadow: 0 2px 10px rgba(11,35,64,.06);
}
.cert-logos--sm img { max-height: 52px; max-width: 88px; }
.acc-band--navy .cert-logos img {
  box-shadow: 0 4px 14px rgba(0,0,0,.12);
}
@media (max-width: 640px) {
  .cert-logos img { max-height: 56px; max-width: 96px; }
}

/* Kill legacy floaty strip if any HTML still emits it */
.accreditation-strip {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  max-width: none !important;
  padding: 0 !important;
}
