.pricing-tool-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(28, 25, 23, 0.65);
  backdrop-filter: blur(4px);
}
.pricing-tool-modal.hidden { display: none; }
.pricing-tool-modal-panel {
  position: relative;
  width: 100%;
  max-width: 480px;
  height: min(90vh, 820px);
  background: #fff;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
}
.pricing-tool-modal-close {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  z-index: 2;
  width: 2.25rem;
  height: 2.25rem;
  border: none;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.95);
  color: #44403c;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}
.pricing-tool-modal-close:hover { background: #f5f5f4; }
.pricing-tool-modal iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.pricing-tool-hero {
  background: linear-gradient(135deg, #ecfdf5 0%, #ffffff 55%, #fafaf9 100%);
  border: 1px solid #d1fae5;
  border-radius: 1.5rem;
  padding: 2rem;
}
@media (min-width: 768px) {
  .pricing-tool-hero {
    padding: 2.5rem 3rem;
  }
}