.credentials {
  position: relative;
  z-index: 4;
  margin: 0 var(--padding-x);
  margin-top: 48px;
}

.credentials-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: transparent;
  border-radius: 0;
  border: none;
  overflow: visible;
}

.cred-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px 16px;
  border-right: 1px solid rgba(0,0,0,0.08);
  gap: 6px;
  position: relative;
  cursor: default;
  transition: transform .25s ease;
}

.cred-stat:last-child {
  border-right: none;
}

.cred-stat::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 40px;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
  transition: transform .3s cubic-bezier(.22,.68,0,1.2);
}

.cred-stat:hover {
  transform: translateY(-4px);
}

.cred-stat:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.cred-icon {
  font-size: 20px;
  color: var(--green);
  font-style: normal;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cred-icon svg {
  width: 30px;
  height: 30px;
  transition: transform .35s cubic-bezier(.22,.68,0,1.2);
}

.cred-stat:hover .cred-icon svg {
  transform: scale(1.18) translateY(-2px) rotate(-4deg);
}

.cred-num {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--black);
  line-height: 1;
  transition: color .25s ease;
}

.cred-stat:hover .cred-num {
  color: var(--green);
}

.cred-label {
  font-size: 12px;
  color: var(--gray-mid);
  line-height: 1.35;
  max-width: 110px;
}
