/* ========================================
   Попап «Оформление через менеджера» — единая точка, куда ведёт любая
   попытка оплаты, пока онлайн-оплата отключена (pricing.html, checkout.html,
   RU+EN). Тот же glass-паттерн, что у остальных модалок сайта.
   ======================================== */
.pay-call-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.pay-call-modal.active {
  display: flex;
}

.pay-call-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.pay-call-modal-content {
  position: relative;
  max-width: 420px;
  width: 100%;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.97) 0%, rgba(10, 15, 30, 0.97) 100%);
  border: 1px solid rgba(6, 182, 212, 0.3);
  border-radius: 24px;
  padding: 36px 30px 30px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  text-align: center;
  z-index: 1;
}

.pay-call-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pay-call-modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.pay-call-modal-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(139, 92, 246, 0.2));
  border: 2px solid rgba(6, 182, 212, 0.4);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
}

.pay-call-modal-content h3 {
  font-size: 22px;
  font-weight: 900;
  color: #ffffff;
  margin: 0 0 8px;
  letter-spacing: -0.3px;
}

.pay-call-modal-plan {
  font-size: 14px;
  font-weight: 700;
  color: #06b6d4;
  margin: 0 0 14px;
}

.pay-call-modal-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  margin: 0 0 24px;
}

.pay-call-modal-btn {
  display: block;
  width: 100%;
  padding: 14px 18px;
  margin-bottom: 12px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  color: #ffffff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pay-call-modal-btn:last-child { margin-bottom: 0; }

.pay-call-modal-btn:hover {
  transform: translateY(-2px);
}

.pay-call-modal-btn--call {
  background: linear-gradient(135deg, #10b981, #14b8a6);
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
}

.pay-call-modal-btn--tg {
  background: linear-gradient(135deg, #0088cc, #00aaee);
  box-shadow: 0 8px 24px rgba(0, 136, 204, 0.3);
}
