/* Booking modal — shared across all three landing pages. */

.apt-modal-backdrop {
  position: fixed; inset: 0; background: rgba(11, 24, 40, 0.65);
  backdrop-filter: blur(6px); z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .2s;
}
.apt-modal-backdrop.open { opacity: 1; pointer-events: auto; }
.apt-modal {
  background: #fbfaf5; border-radius: 14px; width: 1040px; max-width: 96vw;
  max-height: 92vh; overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,.4); transform: translateY(8px);
  transition: transform .2s; display: flex; flex-direction: column;
  font-family: 'Geist', system-ui, sans-serif;
}
.apt-modal-backdrop.open .apt-modal { transform: translateY(0); }
.apt-modal-hd {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 22px; border-bottom: 1px solid rgba(11,24,40,.1);
  flex-shrink: 0;
}
.apt-modal-hd .t {
  font-size: 13px; color: #5a6878; font-family: 'Geist Mono', monospace;
  letter-spacing: .1em; text-transform: uppercase;
}
.apt-modal-hd .x {
  width: 32px; height: 32px; border-radius: 8px; border: 0; background: transparent;
  cursor: pointer; color: #0b1828; font-size: 20px;
}
.apt-modal-hd .x:hover { background: rgba(0,0,0,.05); }
.apt-modal-captured {
  margin: 14px 22px 0; background: rgba(13, 46, 122, 0.05);
  border: 1px solid rgba(13, 46, 122, 0.15); border-radius: 10px;
  padding: 12px 16px;
  display: flex; align-items: center; gap: 12px;
  font-size: 13px; color: #0b1828; flex-shrink: 0;
}
.apt-modal-captured .check {
  width: 24px; height: 24px; border-radius: 50%; background: #0bb07a;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 13px; font-weight: 600; flex-shrink: 0;
}
.apt-modal-captured .cap-text { line-height: 1.4; }
.apt-modal-captured .cap-text b { font-weight: 600; }
.apt-modal-captured .cap-text .sub { color: #5a6878; font-size: 12px; margin-top: 1px; display: block; }
.apt-modal-body { flex: 1; overflow: auto; padding: 14px 22px 22px; }

/* HubSpot embed container — let it grow tall, the script sizes its iframe */
.meetings-iframe-container { min-height: 720px; }
.meetings-iframe-container iframe { width: 100% !important; min-height: 720px; border: 0; }

.apt-modal-foot {
  padding: 12px 22px 18px; font-size: 11.5px; color: #8a96a4;
  font-family: 'Geist Mono', monospace; letter-spacing: .04em; flex-shrink: 0;
  border-top: 1px solid rgba(11,24,40,.08);
}
