.geo_box_shadow {
  box-shadow: 0 8px 28px rgba(35, 103, 240, 0.1);
}

.geo-card-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background: rgba(35, 103, 240, 0.08);
  color: #2367f0;
  font-size: 0.75rem;
  line-height: 1.5;
  white-space: nowrap;
}

@media (min-width: 1280px) {
  .geo-card-tag {
    font-size: 0.875rem;
    padding: 0.3rem 0.875rem;
  }
}

/* FAQ 双页中间活页环：SVG 弧线 + 两端圆点（横向拉长，圆点压在左右页边缘） */
.geo-faq-ring {
  display: block;
  width: 110px;
  height: 48px;
  flex-shrink: 0;
  overflow: visible;
}

@media (min-width: 1280px) {
  .geo-faq-ring {
    width: 128px;
    height: 56px;
  }
}

/* 右侧悬浮标：向外发散光晕 */
.geo-float-cta {
  isolation: isolate;
}

.geo-float-cta::before,
.geo-float-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 0;
  box-shadow: 0 0 0 0 rgba(90, 170, 255, 0.55);
  animation: geo-float-glow 2.4s ease-out infinite;
}

.geo-float-cta::after {
  animation-delay: 1.2s;
}

@keyframes geo-float-glow {
  0% {
    box-shadow: 0 0 0 0 rgba(90, 170, 255, 0.55), 0 0 8px 2px rgba(123, 92, 255, 0.25);
    opacity: 1;
  }
  70% {
    box-shadow: 0 0 0 16px rgba(90, 170, 255, 0), 0 0 28px 8px rgba(123, 92, 255, 0);
    opacity: 0;
  }
  100% {
    box-shadow: 0 0 0 0 rgba(90, 170, 255, 0), 0 0 0 0 rgba(123, 92, 255, 0);
    opacity: 0;
  }
}

/* 上下跳动（单独使用，按需加 class="geo-bounce"） */
.geo-bounce {
  animation: geo-bounce-y 1.8s ease-in-out infinite;
}

@keyframes geo-bounce-y {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}