.elementor-30729 .elementor-element.elementor-element-fdcb86c{--display:flex;}#elementor-popup-modal-30729 .dialog-widget-content{animation-duration:0s;box-shadow:2px 8px 23px 3px rgba(0,0,0,0.2);}#elementor-popup-modal-30729{background-color:rgba(0,0,0,.8);justify-content:center;align-items:center;pointer-events:all;}#elementor-popup-modal-30729 .dialog-message{width:640px;height:auto;}#elementor-popup-modal-30729 .dialog-close-button{display:flex;}/* Start custom CSS for html, class: .elementor-element-1ff5f41 *//* Prevent mobile overscroll */
body {
  overscroll-behavior: none;
}

/* ---------- BACKDROP ---------- */
.fh-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(14px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999999;
  padding: 20px;
}

/* SHOW POPUP */
.fh-overlay.active {
  display: flex;
}

/* ---------- MODAL ---------- */
.fh-modal {
  position: relative;
  width: 100%;
  max-width: 900px;
  max-height: 90vh;
  overflow-y: auto;
  background: #ffffff;
  border-radius: 40px;
  padding: 50px 44px;
}

/* ---------- CLOSE BUTTON ---------- */
.fh-close {
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 26px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 999999;
  line-height: 1;
}

/* ---------- LOGO ---------- */
.fh-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.fh-logo img {
  height: 70px;
  filter: drop-shadow(0 10px 30px rgba(168, 85, 247, 0.35));
}

/* ---------- TEXT ---------- */
.fh-title {
  font-size: 36px;
  margin: 26px 0 10px;
  color: #1f2937;
  text-align: center;
}

.fh-subtitle {
  max-width: 640px;
  margin: 0 auto 40px;
  color: #4b5563;
  font-size: 14px;
  text-align: center;
  line-height: 1.6;
}

/* ---------- PLANS GRID ---------- */
.fh-plans {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

/* ---------- CARD ---------- */
.fh-card {
  position: relative;
  background: linear-gradient(145deg, #ffffff, #f6f7fb);
  border-radius: 30px;
  padding: 30px;
  box-shadow:
    0 28px 50px rgba(0, 0, 0, 0.18),
    inset 0 2px 4px rgba(255, 255, 255, 0.9);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.fh-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.25);
}

.fh-card h3 {
  text-align: center;
  margin-bottom: 10px;
}

/* ---------- FEATURED CARD ---------- */
.fh-card.featured {
  background: linear-gradient(145deg, #ecfdf5, #d1fae5);
  border: 4px solid #86efac;
}

/* ---------- BADGE ---------- */
.fh-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #fb923c, #f97316);
  color: #ffffff;
  padding: 8px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
}

/* ---------- PRICE ---------- */
.fh-price {
  font-size: 38px;
  font-weight: 800;
  margin: 14px 0 22px;
  text-align: center;
}

.fh-price span {
  font-size: 16px;
  color: #6b7280;
}

.fh-price.purple {
  color: #7c3aed;
}

.fh-price.green {
  color: #059669;
}

/* ---------- SAVE TAG ---------- */
.fh-save {
  display: block;
  width: fit-content;
  margin: 0 auto 18px;
  background: linear-gradient(135deg, #10b981, #059669);
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
  text-align: center;
}






.fh-close {
  pointer-events: auto;
}




.fh-overlay {
  display: none;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.fh-overlay.active {
  display: flex;
  visibility: visible;
  opacity: 1;
}

/* Safety: never allow modal alone */
.fh-modal {
  margin: 0;
}






/* ---------- LIST ---------- */
.fh-card ul {
  list-style: none;
  padding: 0;
  margin-top: 18px;
}

.fh-card li {
  margin-bottom: 14px;
  padding-left: 32px;
  position: relative;
  color: #1f2937;
}

.fh-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  background: #34d399;
  color: #ffffff;
  border-radius: 50%;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- CTA ---------- */
.fh-cta-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 44px;
}

.fh-cta {
  display: inline-block;
  padding: 20px 70px;
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  border-radius: 999px;
  background: linear-gradient(135deg, #10b981, #047857);
  box-shadow: 0 24px 55px rgba(16, 185, 129, 0.45);
  text-decoration: none;
  transition: transform 0.3s ease;
}

.fh-cta:hover {
  transform: translateY(-6px);
}





/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .fh-plans {
    grid-template-columns: 1fr;
  }

  .fh-title {
    font-size: 30px;
  }

  .fh-modal {
    padding: 30px 20px;
    border-radius: 28px;
  }

  .fh-price {
    font-size: 32px;
  }

  .fh-cta {
    padding: 18px 56px;
    font-size: 18px;
  }
}/* End custom CSS */