/* RHVA V130 - Mobile homepage card limit + tilt hint */
@media (max-width: 767px) {
  body.rhva-v130-home #home-specializations .rhv-home-v100-grid > .rhv-home-v100-card:nth-of-type(n+4),
  body.rhva-v130-home #home-services .rhv-home-v100-grid > .rhv-home-v100-card:nth-of-type(n+4),
  body.rhva-v130-home #rhvaReviewsGrid > .rhva-review-card-final:nth-of-type(n+4) {
    display: none !important;
  }

  body.rhva-v130-home #home-specializations .rhv-home-v100-grid,
  body.rhva-v130-home #home-services .rhv-home-v100-grid,
  body.rhva-v130-home #rhvaReviewsGrid {
    grid-template-columns: 1fr !important;
  }
}

.rhva-v130-tilt-hint {
  position: fixed;
  left: 50%;
  top: 86px;
  transform: translateX(-50%) translateY(-18px) scale(.96);
  z-index: 999999;
  width: min(92vw, 390px);
  padding: 14px 48px 14px 16px;
  border-radius: 20px;
  background: rgba(5, 25, 35, .94);
  color: #ffffff;
  border: 1px solid rgba(77, 223, 255, .35);
  box-shadow: 0 22px 55px rgba(0, 0, 0, .32), inset 0 1px 0 rgba(255,255,255,.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease;
}
.rhva-v130-tilt-hint.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0) scale(1);
}
.rhva-v130-phone-icon {
  width: 42px;
  min-width: 42px;
  height: 42px;
  border-radius: 13px;
  border: 2px solid rgba(255,255,255,.92);
  position: relative;
  box-shadow: 0 0 0 5px rgba(37,213,253,.13);
  animation: rhvaV130TiltPhone 1.45s ease-in-out infinite;
}
.rhva-v130-phone-icon::before {
  content: '';
  position: absolute;
  width: 13px;
  height: 3px;
  border-radius: 99px;
  background: rgba(255,255,255,.85);
  left: 50%;
  top: 5px;
  transform: translateX(-50%);
}
.rhva-v130-phone-icon::after {
  content: '↻';
  position: absolute;
  right: -12px;
  bottom: -10px;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 15px;
  line-height: 1;
  color: #002b36;
  background: #38dff8;
  font-weight: 900;
  animation: rhvaV130Pulse 1.45s ease-in-out infinite;
}
.rhva-v130-tilt-copy strong {
  display: block;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0 0 3px;
}
.rhva-v130-tilt-copy span {
  display: block;
  font-size: 12px;
  line-height: 1.35;
  color: rgba(232, 250, 255, .86);
}
.rhva-v130-tilt-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  color: #ffffff;
  cursor: pointer;
  font-size: 18px;
  line-height: 28px;
  font-weight: 800;
}
.rhva-v130-tilt-close:hover { background: rgba(255,255,255,.22); }

@keyframes rhvaV130TiltPhone {
  0%, 100% { transform: rotate(0deg); }
  38% { transform: rotate(0deg); }
  64% { transform: rotate(90deg); }
  82% { transform: rotate(90deg); }
}
@keyframes rhvaV130Pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.14); opacity: .82; }
}

@media (min-width: 768px), (orientation: landscape) {
  .rhva-v130-tilt-hint { display: none !important; }
}