.social-proof {
  position: fixed;
  left: 16px;
  bottom: 16px;
  width: min(380px, calc(100vw - 32px));
  z-index: 99999;
  background: #ffffff;
  border: 1px solid #dfe8fb;
  box-shadow: 0 20px 40px rgba(16, 34, 70, 0.18);
  border-radius: 14px;
  padding: 14px 16px 12px;
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s ease, opacity 0.35s ease;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  line-height: 1.35;
}

#socialProofClose,
.social-proof .social-proof-close {
  display: none!important;
}

.social-proof.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.social-proof-title {
  margin: 0 0 6px;
  font-size: 12px;
  color: #2f67d2;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.45px;
}

.social-proof-message {
  margin: 0;
  font-size: 16px;
  color: #1d2433;
  font-weight: 500;
}

#proofArea {
  font-weight: 700!important;
}

#proofService {
  font-style: italic;
}

.social-proof-time {
  display: inline;
  margin-left: 4px;
  color: #65748f;
  font-size: 14px;
  font-weight: 500;
}

.social-proof-verified {
  margin: 6px 0 0;
  font-size: 12px;
  font-weight: 700;
  color: #c92525;
  letter-spacing: 0.2px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.verified-check {
  font-size: 12px;
  line-height: 1;
}

@media (max-width: 900px) {
  .social-proof {
    left: 10px;
    right: 10px;
    bottom: 10px;
    width: auto;
  }
}
