.lfs--usp-bottomnote{
  position: sticky;
  bottom: 0;
  z-index: 5;

  background: #e8eef9; /* helles Blau statt #f9ebee */
  border-top: 1px solid rgba(45,83,160,.18);
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;

  padding: 12px 14px;

  transform: translateY(-18px);
  opacity: 0;
  animation: lfs--bottomnote-in 1s cubic-bezier(.25,.8,.25,1) forwards;
}

.lfs--usp-bottomnote__inner{
  display: flex;
  align-items: flex-start;
  gap: 10px;

  background: #ffffff;
  border: 1px solid rgba(45,83,160,.25);
  border-radius: 12px;
	font-weight: bold;

  padding: 12px 14px;

  color: #2d53a0; /* neues Blau */
  font-size: 14px;
  line-height: 1.35;
}

.lfs--usp-bottomnote__inner::before{
  content: "💡";
  flex-shrink: 0;
  transform: translateY(1px);
}

@keyframes lfs--bottomnote-in{
  to{
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 680px){
  .lfs--usp-bottomnote__inner{
    font-size: 13.5px;
  }
}