#exit-popup {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 9999;
}

#exit-popup .popup-content {
  background: #fff;
  max-width: 560px;
  margin: 8% auto;
  padding: 24px;
  border-radius: 12px;
  text-align: center;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

#exit-popup .close-btn {
  position: absolute;
  top: 10px;
  right: 14px;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
  border: 0;
  background: transparent;
}

#exit-popup .thank-you-message {
  margin-top: 20px;
  padding: 15px;
  background: #f0f9f0;
  border: 1px solid #cce5cc;
  border-radius: 8px;
  color: #2d662d;
}

#exit-popup .popup-title {
  font-size: 32px;
  line-height: 36px;
  color: var(--secondary);
  font-weight: var(--semibold);
}
/* Remove empty grid rows created by hidden fields */
#exit-popup .wpcf7-form .field.hidden-field,
#exit-popup .wpcf7-form .field:has(input[type="hidden"]) {
  display: none;
}
@media (max-width:768px) {
  #exit-popup .popup-title {
    font-size: 24px;
    line-height: 28px;
  }
}