/* Leap service drawer: in-page bottom sheet for service / technology details,
   replacing navigation to the per-service pages. Self-contained; all class
   names are prefixed to avoid colliding with Webflow's. */
.leap-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 18, 20, 0.55);
  opacity: 0;
  /* Closed backdrop must not eat clicks: it stays in the DOM after close. */
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 9998;
}
.leap-drawer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
  max-width: 56rem;
  max-height: 86vh;
  display: flex;
  flex-direction: column;
  background: #fff;
  color: #1a1a1a;
  border-radius: 20px 20px 0 0;
  box-shadow: 0 -12px 48px rgba(0, 0, 0, 0.25);
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.32, 0.72, 0, 1);
  z-index: 9999;
}
.leap-drawer.is-open {
  transform: translateY(0);
}
.leap-drawer-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}
.leap-drawer-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 1.75rem 0.75rem;
}
.leap-drawer-title {
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.25;
  font-weight: 700;
}
.leap-drawer-close {
  flex: none;
  width: 2.25rem;
  height: 2.25rem;
  border: 0;
  border-radius: 50%;
  background: #f1f1f0;
  color: #1a1a1a;
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
}
.leap-drawer-close:hover {
  background: #e5e5e3;
}
.leap-drawer-body {
  overflow-y: auto;
  padding: 0 1.75rem 2rem;
  -webkit-overflow-scrolling: touch;
}
.leap-drawer-body img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}
.leap-drawer-body h2 {
  font-size: 1.2rem;
  margin: 1.5em 0 0.5em;
}
.leap-drawer-loading {
  padding: 3rem 0;
  text-align: center;
  color: #777;
}
.leap-drawer-grabber {
  width: 2.5rem;
  height: 0.3rem;
  border-radius: 999px;
  background: #e0e0de;
  margin: 0.6rem auto 0;
  flex: none;
}
body.leap-drawer-lock {
  overflow: hidden;
}
@media (max-width: 640px) {
  .leap-drawer {
    max-height: 92vh;
  }
  .leap-drawer-head {
    padding: 1.1rem 1.25rem 0.5rem;
  }
  .leap-drawer-body {
    padding: 0 1.25rem 1.5rem;
  }
}
