.home-hero .home-value-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 20px;
}

.home-hero .home-value-proof span {
  padding: 7px 11px;
  border: 1px solid #c9dccf;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #145b42;
  font-size: 12px;
  font-weight: 850;
  line-height: 1;
}

.online-presence-widget {
  position: fixed;
  z-index: 46;
  bottom: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 186px;
  padding: 12px 15px;
  border: 1px solid rgba(167, 195, 176, 0.88);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 42px rgba(16, 54, 39, 0.15);
  color: #102019;
  backdrop-filter: blur(14px);
}

.online-presence-dot {
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  background: #28a66f;
  box-shadow: 0 0 0 4px rgba(40, 166, 111, 0.15);
  animation: online-presence-pulse 2.4s ease-in-out infinite;
}

.online-presence-copy {
  display: grid;
  gap: 2px;
}

.online-presence-copy b {
  font-size: 13px;
  line-height: 1.3;
}

.online-presence-copy small {
  color: #6a7c72;
  font-size: 10px;
}

.online-presence-widget.is-loading .online-presence-dot,
.online-presence-widget.is-unavailable .online-presence-dot {
  background: #90a299;
  box-shadow: 0 0 0 4px rgba(96, 112, 105, 0.12);
  animation: none;
}

@keyframes online-presence-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.18); }
}

@media (width <= 760px) {
  .home-hero .home-value-proof {
    gap: 6px;
    margin: 14px 0 16px;
  }

  .home-hero .home-value-proof span {
    padding: 6px 9px;
    font-size: 11px;
  }

  .online-presence-widget {
    bottom: 14px;
    left: 14px;
    min-width: 0;
    max-width: calc(100vw - 106px);
    padding: 10px 12px;
    border-radius: 14px;
  }

  .online-presence-copy small {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .online-presence-dot {
    animation: none;
  }
}
