.floating-case-cta {
  background: linear-gradient(112deg, #22c55e 0%, #16a34a 100%);
  background-size: 100% 100%;
}

/* Bigger CTA with a more prominent label, matching the German landing. */
.floating-case-cta {
  min-height: 65px;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: 0.2px;
  padding: 0 24px 0 28px;
  gap: 12px;
}

.floating-case-cta__icon {
  width: 40px;
  height: 40px;
}

.floating-case-cta__icon svg {
  width: 20px;
  height: 20px;
}

/* Entrance: fly in from the right edge instead of fading/rising in place. */
.floating-case-cta {
  animation: none;
  opacity: 0;
  transform: translateX(calc(100% + 40px));
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
}

.floating-case-cta.is-visible {
  opacity: 1;
  transform: translateX(0);
}

body.is-video-testimonial-playing .floating-case-cta {
  opacity: 0;
  pointer-events: none;
  transform: translateX(calc(100% + 40px));
  visibility: hidden;
}

@media (max-width: 47.99875em) {
  .floating-case-cta {
    bottom: calc(14px + env(safe-area-inset-bottom, 0px));
    max-width: calc(100vw - 28px);
    min-height: 60px;
    font-size: 17px;
    padding: 0 20px 0 24px;
    gap: 10px;
  }

  .floating-case-cta__icon {
    width: 36px;
    height: 36px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .floating-case-cta {
    transition: opacity 0.2s ease;
    transform: none;
  }

  .floating-case-cta:not(.is-visible) {
    opacity: 0;
  }

  .floating-case-cta,
  .floating-case-cta::before,
  .floating-case-cta::after {
    animation: none;
  }
}
