.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 88px 0;
}

.section--soft {
  background: var(--surface-soft);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.eyebrow {
  margin-bottom: 9px;
  color: var(--blue-700);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lead,
.section-heading p {
  color: var(--muted);
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  padding: 0 22px;
  font-weight: 780;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  color: #fff;
  background: var(--blue-700);
  box-shadow: 0 12px 30px rgba(7, 87, 201, 0.26);
}

.btn--primary:hover {
  background: var(--blue-800);
}

.btn--light-outline {
  border-color: rgba(255, 255, 255, 0.72);
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
  white-space: nowrap;
}

.btn--light-outline:hover {
  background: rgba(255, 255, 255, 0.14);
}

.btn--blue-outline {
  border-color: var(--blue-700);
  color: var(--blue-700);
  background: transparent;
}

.btn--blue-outline:hover {
  background: var(--blue-50);
}

.icon-inline {
  width: 21px;
  height: 21px;
  flex: 0 0 21px;
}

.logo-card {
  display: flex;
  min-height: 108px;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.logo-card img {
  display: block;
  width: auto;
  max-width: 160px;
  height: 58px;
  max-height: 58px;
  object-fit: contain;
  filter: saturate(0.35);
  opacity: 0.88;
  transition:
    filter 180ms ease,
    opacity 180ms ease,
    transform 180ms ease;
}

.logo-card:hover img {
  filter: saturate(1);
  opacity: 1;
  transform: scale(1.04);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.btn--primary .icon-inline,
.btn--light-outline .icon-inline {
  filter: brightness(0) invert(1);
}
