.psgtr-modal-open {
  overflow: hidden;
}

.psgtr-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(12, 14, 20, 0.72);
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.psgtr-modal-overlay.is-open {
  display: flex;
}

.psgtr-modal-card {
  width: min(920px, 95vw);
  border-radius: 44px;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  position: relative;
  padding: 48px 56px 40px;
  text-align: center;
}

.psgtr-modal-close {
  position: absolute;
  top: 16px;
  left: 18px;
  border: none;
  background: transparent;
  font-size: 34px;
  line-height: 1;
  color: #4a4f58;
  cursor: pointer;
}

.psgtr-modal-logo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
}

.psgtr-modal-logo {
  max-width: 165px;
  width: 100%;
  height: auto;
}

.psgtr-modal-text h3 {
  font-size: 52px;
  line-height: 1.1;
  margin: 0 0 8px;
  color: #1f242f;
}

.psgtr-modal-text p {
  font-size: 24px;
  line-height: 1.3;
  margin: 0 0 8px;
  color: #7f8793;
}

.psgtr-modal-wa-btn {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 290px;
  padding: 14px 26px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 34px;
  line-height: 1.15;
  background: #22c55e;
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(34, 197, 94, 0.3);
}

.psgtr-modal-wa-btn:hover,
.psgtr-modal-wa-btn:focus {
  color: #ffffff;
  text-decoration: none;
  background: #19b04f;
}

@media (max-width: 991px) {
  .psgtr-modal-card {
    border-radius: 24px;
    padding: 44px 24px 28px;
  }

  .psgtr-modal-logo {
    max-width: 130px;
  }

  .psgtr-modal-text h3 {
    font-size: 34px;
  }

  .psgtr-modal-text p {
    font-size: 20px;
  }

  .psgtr-modal-wa-btn {
    min-width: 250px;
    font-size: 25px;
  }
}

@media (max-width: 575px) {
  .psgtr-modal-overlay {
    padding: 14px;
  }

  .psgtr-modal-card {
    padding: 34px 16px 20px;
  }

  .psgtr-modal-close {
    top: 10px;
    left: 12px;
    font-size: 28px;
  }

  .psgtr-modal-text h3 {
    font-size: 26px;
  }

  .psgtr-modal-text p {
    font-size: 17px;
  }

  .psgtr-modal-wa-btn {
    min-width: 220px;
    width: 100%;
    font-size: 21px;
  }
}

