.trust-strip {
  padding: 5.5rem 1.5rem;
  background: linear-gradient(
    135deg,
    var(--color-blue-primary) 0%,
    var(--color-blue-light) 100%
  );
}

.trust-strip-container {
  max-width: 1200px;
  margin: 0 auto;
}

.trust-strip-heading {
  text-align: center;
  margin-bottom: 2.5rem;
}

.trust-strip-eyebrow {
  display: inline-block;
  margin-bottom: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.trust-strip-heading h2 {
  margin: 0;
  color: var(--color-white);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
}

.trust-strip-cards {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 1.75rem 2rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.trust-mini-card {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  min-width: 0;
}

.trust-mini-logo {
  width: 82px;
  height: 82px;
  flex: 0 0 82px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.trust-mini-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

.trust-mini-text {
  min-width: 0;
}

.trust-mini-text span {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--color-white);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.25;
}

.trust-mini-text p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  line-height: 1.5;
  overflow-wrap: break-word;
}

.trust-mini-divider {
  width: 1px;
  align-self: stretch;
  flex: 0 0 1px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.6),
    rgba(255, 255, 255, 0)
  );
}

/* Tablet stays horizontal */
@media (max-width: 991px) {
  .trust-strip {
    padding: 4.5rem 1.25rem;
  }

  .trust-strip-heading {
    margin-bottom: 2rem;
  }

  .trust-strip-heading h2 {
    font-size: clamp(1.85rem, 4.8vw, 2.5rem);
  }

  .trust-strip-cards {
    gap: 1.25rem;
    padding: 1.4rem 1.5rem;
  }

  .trust-mini-card {
    gap: 0.9rem;
  }

  .trust-mini-logo {
    width: 72px;
    height: 72px;
    flex: 0 0 72px;
    padding: 0.65rem;
    border-radius: 16px;
  }

  .trust-mini-text span {
    font-size: 1rem;
  }

  .trust-mini-text p {
    font-size: 0.9rem;
    line-height: 1.45;
  }
}

/* Mobile switches to stacked */
@media (max-width: 767px) {
  .trust-strip {
    padding: 3.75rem 1rem;
  }

  .trust-strip-heading {
    margin-bottom: 1.5rem;
  }

  .trust-strip-heading h2 {
    font-size: 1.7rem;
    max-width: 12ch;
    margin: 0 auto;
  }

  .trust-strip-cards {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem;
    border-radius: 20px;
  }

  .trust-mini-card {
    width: 100%;
    flex: initial;
    gap: 0.9rem;
    padding: 0.95rem 0;
  }

  .trust-mini-divider {
    width: 100%;
    height: 1px;
    flex: initial;
    background: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0),
      rgba(255, 255, 255, 0.6),
      rgba(255, 255, 255, 0)
    );
  }

  .trust-mini-logo {
    width: 68px;
    height: 68px;
    flex: 0 0 68px;
    padding: 0.6rem;
    border-radius: 14px;
  }

  .trust-mini-text span {
    font-size: 1rem;
  }

  .trust-mini-text p {
    font-size: 0.92rem;
    line-height: 1.45;
  }
}

@media (max-width: 420px) {
  .trust-strip-heading h2 {
    font-size: 1.5rem;
  }

  .trust-mini-logo {
    width: 62px;
    height: 62px;
    flex: 0 0 62px;
  }

  .trust-mini-text span {
    font-size: 0.95rem;
  }

  .trust-mini-text p {
    font-size: 0.88rem;
  }
}