.agent-call-cta {
  --agent-cyan: #13d8e8;
  --agent-green: #55ef7d;
  position: relative;
  isolation: isolate;
  display: inline-grid !important;
  grid-template-columns: 54px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  width: clamp(288px, 25vw, 320px);
  min-width: 0;
  min-height: 68px;
  padding: 5px 6px;
  overflow: hidden;
  border: 1px solid var(--agent-cyan) !important;
  border-radius: 999px;
  background:
    radial-gradient(circle at 76% 22%, rgba(20, 216, 232, .22), transparent 24%),
    linear-gradient(105deg, rgba(2, 24, 34, .98), rgba(4, 35, 59, .96) 62%, rgba(6, 53, 84, .92));
  color: #f4fbfb !important;
  box-shadow:
    inset 0 0 24px rgba(19, 216, 232, .12),
    0 0 0 1px rgba(19, 216, 232, .06),
    0 12px 34px rgba(0, 174, 205, .22);
  text-align: left;
  text-decoration: none;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.agent-call-cta::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0 42px 0 52%;
  opacity: .22;
  background-image: radial-gradient(circle, rgba(91, 229, 242, .7) 1px, transparent 1.5px);
  background-size: 7px 7px;
  mask-image: linear-gradient(90deg, transparent, #000 45%, transparent);
}

.agent-call-cta:hover,
.agent-call-cta:focus-visible {
  transform: translateY(-2px);
  border-color: #75f1fb !important;
  box-shadow:
    inset 0 0 30px rgba(19, 216, 232, .18),
    0 0 0 1px rgba(117, 241, 251, .12),
    0 16px 42px rgba(0, 174, 205, .32);
}

.agent-call-cta:focus-visible {
  outline: 3px solid rgba(117, 241, 251, .32);
  outline-offset: 3px;
}

.agent-call-cta__phone,
.agent-call-cta__arrow {
  position: relative;
  display: grid;
  place-items: center;
  flex: none;
  border: 1px solid rgba(67, 224, 239, .42);
  border-radius: 50%;
  background: rgba(1, 19, 29, .58);
}

.agent-call-cta__phone {
  width: 54px;
  height: 54px;
  color: #fff;
  box-shadow: inset 0 0 16px rgba(30, 217, 232, .12);
}

.agent-call-cta__phone svg {
  width: 24px;
  height: 24px;
}

.agent-call-cta__copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  line-height: 1.08;
}

.agent-call-cta__status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 5px;
  color: var(--agent-green);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.agent-call-cta__status::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 8px currentColor;
  animation: agent-online-pulse 1.8s ease-in-out infinite;
}

.agent-call-cta__title {
  overflow: hidden;
  color: #f4fbfb;
  font-size: clamp(13px, 1.5vw, 17px);
  font-weight: 760;
  letter-spacing: -.01em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.agent-call-cta__arrow {
  display: none;
}

@keyframes agent-online-pulse {
  0%, 100% { opacity: .58; transform: scale(.82); }
  50% { opacity: 1; transform: scale(1.12); }
}

@media (max-width: 980px) {
  .agent-call-cta {
    width: min(300px, 38vw);
    min-width: 272px;
    grid-template-columns: 50px minmax(0, 1fr);
    min-height: 62px;
  }

  .agent-call-cta__phone {
    width: 50px;
    height: 50px;
  }

}

@media (max-width: 700px) {
  .nav-actions .agent-call-cta,
  .agent-call-cta {
    display: inline-grid !important;
    grid-template-columns: 1fr;
    width: 58px;
    min-width: 58px;
    min-height: 58px;
    padding: 3px;
  }

  .agent-call-cta__phone {
    width: 50px;
    height: 50px;
  }

  .agent-call-cta__copy {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .agent-call-cta,
  .agent-call-cta__status::before {
    animation: none;
    transition: none;
  }
}
