.hctr,
.hctr * { box-sizing: border-box; }

.hctr {
  --hctr-ink: #17354a;
  --hctr-muted: #6d8292;
  --hctr-cyan: #11b9d5;
  --hctr-line: rgba(23, 53, 74, .105);
  position: relative;
  width: 100%;
  color: var(--hctr-ink);
  background: rgba(255, 255, 255, .985);
  border: 1px solid rgba(23, 53, 74, .075);
  border-radius: 18px;
  overflow: hidden;
  isolation: isolate;
}

.hctr::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, transparent 4%, var(--hctr-cyan) 36%, rgba(17,185,213,.14) 88%, transparent);
}

.hctr__inner {
  display: grid;
  grid-template-columns: minmax(390px, .9fr) minmax(0, 1.3fr);
  min-height: 184px;
}

.hctr__intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px 32px 21px 34px;
  border-right: 1px solid var(--hctr-line);
  background: linear-gradient(110deg, rgba(17,185,213,.035), transparent 55%);
}

.hctr__eyebrow,
.hctr__rail-kicker {
  color: #6d8494;
  font-family: inherit;
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: .19em;
  line-height: 1.25;
  text-transform: uppercase;
}

.hctr__eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 7px;
}

.hctr__eyebrow > span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--hctr-cyan);
  box-shadow: 0 0 0 5px rgba(17,185,213,.08);
}

.hctr h2 {
  margin: 0 0 13px;
  color: var(--hctr-ink);
  font-family: inherit;
  font-size: clamp(24px, 2vw, 30px);
  font-weight: 600;
  letter-spacing: -.035em;
  line-height: 1.05;
}

.hctr__recognition {
  display: grid;
  grid-template-columns: 35px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
}

.hctr__institution {
  display: grid;
  place-items: center;
  width: 35px;
  height: 35px;
  color: #00abc7;
  background: #f0fbfd;
  border: 1px solid rgba(17,185,213,.22);
  border-radius: 10px;
}

.hctr__institution svg { width: 19px; height: 19px; fill: currentColor; }
.hctr__statement { margin: 0; color: #29475b; font-size: 11.5px; font-weight: 600; letter-spacing: -.008em; line-height: 1.4; }
.hctr__countries { display: flex; align-items: center; flex-wrap: wrap; gap: 7px; margin: 5px 0 0; color: var(--hctr-muted); font-size: 8.5px; font-weight: 600; letter-spacing: .025em; }
.hctr__countries i { width: 3px; height: 3px; border-radius: 50%; background: var(--hctr-cyan); opacity: .8; }

.hctr__rail {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 17px 25px 15px;
}

.hctr__rail-head {
  display: flex;
  align-items: flex-start;
  min-height: 34px;
  margin: 0 2px 8px;
}

.hctr__rail-head > div:first-child { display: flex; flex-direction: column; gap: 3px; }
.hctr__rail-title { color: var(--hctr-ink); font-size: 13px; font-weight: 600; letter-spacing: -.015em; line-height: 1.2; }
.hctr__viewport {
  position: relative;
  min-width: 0;
  overflow: hidden;
  cursor: default;
  touch-action: pan-y;
  contain: layout paint;
}

.hctr__viewport::before,
.hctr__viewport::after {
  content: "";
  position: absolute;
  z-index: 3;
  top: 0;
  bottom: 0;
  width: 24px;
  pointer-events: none;
}

.hctr__viewport::before { left: 0; background: linear-gradient(90deg, #fff, rgba(255,255,255,0)); }
.hctr__viewport::after { right: 0; background: linear-gradient(270deg, #fff, rgba(255,255,255,0)); }
.hctr__track { --hctr-gap: 9px; display: flex; align-items: stretch; gap: var(--hctr-gap); will-change: transform; transform: translate3d(0,0,0); backface-visibility: hidden; -webkit-backface-visibility: hidden; user-select: none; }
.hctr__track.is-moving { transition: none; }
.hctr__slide { flex: 0 0 calc((100% - (var(--hctr-gap) * 2.1))/3.1); min-width: 0; user-select: none; }
.hctr__logo-frame {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 82px;
  padding: 8px 13px;
  background: linear-gradient(145deg, rgba(247,250,252,.78), rgba(255,255,255,.96));
  border: 1px solid rgba(23,53,74,.075);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color .4s ease, background .4s ease, transform .4s cubic-bezier(.2,.7,.2,1), box-shadow .4s ease;
}

.hctr__logo-frame::after {
  content: "";
  position: absolute;
  inset: auto 18% 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(17,185,213,.65), transparent);
  opacity: 0;
  transform: scaleX(.4);
  transition: opacity .4s ease, transform .4s ease;
}

.hctr__logo {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 57px;
  object-fit: contain;
  opacity: 0;
  transform: translateY(3px) scale(.975);
  transition: opacity .42s ease, transform .48s cubic-bezier(.2,.7,.2,1);
  -webkit-user-drag: none;
  user-select: none;
  pointer-events: none;
}

.hctr__slide--seal .hctr__logo { max-width: 62px; max-height: 62px; }
.hctr__logo.is-loaded { opacity: 1; transform: none; }
.hctr__logo.is-error { display: none; }
.hctr__logo-frame:has(.is-error)::before { content: "Trusted partner"; color: #6a8294; font-size: 9px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.hctr__slide:hover .hctr__logo-frame { background: #fff; border-color: rgba(17,185,213,.28); transform: translateY(-2px); box-shadow: 0 9px 22px rgba(23,53,74,.07); }
.hctr__slide:hover .hctr__logo-frame::after { opacity: 1; transform: scaleX(1); }
.hctr__slide:hover .hctr__logo { transform: scale(1.045); }


@media (max-width: 1024px) {
  .hctr__inner { grid-template-columns: minmax(340px, .88fr) minmax(0, 1.12fr); }
  .hctr__intro { padding-inline: 25px; }
  .hctr__slide { flex-basis: calc((100% - (var(--hctr-gap) * 1.05))/2.05); }
}

@media (max-width: 760px) {
  .hctr { border-radius: 15px; }
  .hctr::before { inset: 0 0 auto; width: auto; height: 2px; background: linear-gradient(90deg, transparent 4%, var(--hctr-cyan) 38%, rgba(17,185,213,.12) 88%, transparent); }
  .hctr__inner { display: block; min-height: 0; }
  .hctr__intro { padding: 19px 20px 16px; border-right: 0; border-bottom: 1px solid var(--hctr-line); }
  .hctr__eyebrow { margin-bottom: 6px; }
  .hctr h2 { margin-bottom: 11px; font-size: 23px; }
  .hctr__recognition { grid-template-columns: 32px minmax(0,1fr); gap: 10px; }
  .hctr__institution { width: 32px; height: 32px; border-radius: 9px; }
  .hctr__statement { font-size: 10.5px; }
  .hctr__countries { font-size: 8px; }
  .hctr__rail { padding: 14px 17px 13px; }
  .hctr__rail-head { align-items: center; margin-bottom: 8px; }
  .hctr__rail-kicker { display: none; }
  .hctr__rail-title { font-size: 12px; }
  .hctr__slide { flex-basis: calc((100% - (var(--hctr-gap) * .22))/1.22); }
  .hctr__logo-frame { height: 75px; }
  .hctr__logo { max-height: 52px; }
  .hctr__slide--seal .hctr__logo { max-width: 57px; max-height: 57px; }
  .hctr__viewport::before, .hctr__viewport::after { width: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  .hctr__track, .hctr__track.is-moving, .hctr__slide, .hctr__logo, .hctr__logo-frame { transition: none !important; }
}
