/* ===== Base ===== */
.quantum-leap-section {
  padding: 0;
  margin: 0;
}

.quantum-leap-heading {
  font-family: var(--font-semplicita) !important;
  font-weight: var(--font-weight-700);
  font-style: Bold;
  font-size: clamp(var(--font-size-28), 4.2vw, var(--font-size-40));
  line-height: 1.1;
  text-align: left;
  color: rgba(31, 41, 55, 1);
  padding-bottom: var(--mp16);
}
.quantum-leap-subtitle, .quantum-leap-content {
  font-weight: var(--font-weight-700);
  font-style: Bold;
  font-size: clamp(var(--font-size-18), 2.6vw, var(--font-size-30));
  line-height: 1.15;
  text-align: left;
  color: rgba(37, 13, 70, 1);
  padding-bottom: var(--mp48);
}

.quantum-leap-content  {
  font-size: clamp(var(--font-size-16), 2.6vw, var(--font-size-24));
}

.quantum-leap-section.is-on-video .quantum-leap-heading,
.quantum-leap-section.is-on-video .quantum-leap-subtitle,
.quantum-leap-section.is-on-video .quantum-leap-content {
  color: var(--text-white);
  text-align: center;
  margin: 0;
  text-shadow: 0 0.077rem 0.154rem rgba(0, 0, 0, 0.35),
    0 0.154rem 0.615rem rgba(0, 0, 0, 0.55),
    0 0.615rem 1.846rem rgba(0, 0, 0, 0.35);
}

.ql-sticky {
  position: sticky;
  top: var(--sticky-top, 0px);
  height: calc(100vh - var(--sticky-top, 0px));
  overflow: hidden;
  isolation: isolate;
}
.ql-video-blur,
.ql-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.ql-video-blur {
  filter: blur(1.538rem) brightness(0.75);
  transform: scale(1.12);
  z-index: 0;
}
.ql-video-bg {
  background: transparent;
  z-index: 1;
  box-shadow: 0 0 3.077rem 3.077rem rgba(0, 0, 0, 0.35);
}

.ql-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  grid-template-rows: 1fr auto;
  align-items: center;
  justify-items: center;
  padding: var(--mp16);
  text-align: center;
  pointer-events: none;
}
.ql-copy {
  position: relative;
  top: 50%;
  transform: translateY(-50%) !important;
  pointer-events: none;
}
.ql-copy::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(
    252.65deg,
    var(--primary-color) 8.18%,
    #250e45 91.82%
  );
  filter: blur(5.384rem) saturate(115%);
  opacity: 0.75;
  border-radius: 50%;
  top: -10%;
  height: calc(100% + 6.154rem);
  transform: translateY(-3.077rem);
}

.quantum-leap-container[data-scrolly-slot] {
  width: min(98.462rem, 94vw);
  margin-top: 2rem;
  z-index: 3;
}
.quantum-leap-container[data-scrolly-slot].is-active {
  pointer-events: auto;
}

.packages-flex {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(var(--mp16), 2vw, var(--mp24));
  margin: 0 auto;
  align-items: stretch;
  grid-auto-rows: auto;
}

@media (min-width: 768px) {
  .packages-flex {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1280px) {
  .packages-flex {
    grid-template-columns: 1fr 1.2fr 1fr;
    align-items: center;
    grid-auto-rows: auto;
  }
}

/* ===== CARD ===== */
.package-box {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--text-white);
  padding: var(--mp32);
  border-radius: var(--border-radius-16);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease,
    border-color 0.25s ease;
  border: 0.077rem solid rgba(0, 0, 0, 0.3);
  box-shadow: 0 0.308rem 0.615rem rgba(0, 0, 0, 0.06);
  margin: 0;
  background: linear-gradient(
      255.62deg,
      rgba(237, 234, 241, 0.8) 5.53%,
      #d9d0e6 90.9%
    ),
    url("/site/assets/images/only_icon.png");
  background-size: cover, contain;
  background-position: center, center;
  background-blend-mode: overlay;
  background-repeat: no-repeat, no-repeat;
  min-height: 31.692rem;
  align-self: center;
  height: auto;
}
.package-box:hover {
  transform: translateY(-0.308rem);
  box-shadow: 0 0.769rem 1.846rem rgba(0, 0, 0, 0.12);
}

.package-box.default-highlight {
  box-shadow: 0 0.769rem 1.538rem rgba(0, 0, 0, 0.2);
  background: linear-gradient(
      255.62deg,
      rgba(37, 13, 70, 0.8) 5.53%,
      var(--primary-color) 90.9%
    ),
    url("/site/assets/images/only_icon.png");
  background-size: cover, contain;
  background-position: center, center;
  background-blend-mode: overlay;
  background-repeat: no-repeat, no-repeat;
  min-height: 36rem;
  align-self: stretch;
}

@media (max-width: 1279.98px) {
  .package-box {
    align-self: stretch;
  }
  .package-box.default-highlight {
    min-height: 31.692rem;
  }
}

.logo-section {
  height: clamp(7.385rem, 12vh, 9.846rem);
  position: relative;
}
.package-logo {
  position: absolute;
  top: 0.923rem;
  left: 0.923rem;
  width: 5.538rem;
  height: 5.538rem;
  object-fit: contain;
}

.package-box-content {
  padding: 0.923rem;
  display: flex;
  flex-direction: column;
  gap: 0.923rem;
  align-items: flex-start;
}

.package-box .content {
  text-align: left;
}

.package-box .content-title,
.package-box.default-highlight .content-title {
  font-weight: var(--font-weight-700);
  font-size: clamp(var(--font-size-18), 2.6vw, var(--font-size-30));
  line-height: 1.1;
  margin-bottom: 1.231rem;
  color: rgba(31, 41, 55, 1);
  text-align: left;
}
.package-box.default-highlight .content-title {
  color: var(--text-white);
}
.package-box.default-highlight .content {
  color: var(--text-white);
  font-size: var(--font-size-18);
}

.package-box .content ul {
  list-style: disc;
  padding-left: var(--mp24);
}
.package-box .content ol {
  list-style: decimal;
  padding-left: var(--mp24);
}
.package-box .content p,
.package-box .content li {
  margin-bottom: 0.5rem;
  font-size: var(--font-size-18);
}

@media (max-width: 767.98px) {
  .packages-flex {
    gap: var(--mp16);
  }
  .package-box {
    padding: var(--mp24);
  }
  .logo-section {
    height: 7.385rem;
  }
  .package-logo {
    width: 4.308rem;
    height: 4.308rem;
    top: 0.769rem;
    left: 0.769rem;
  }
}
@media (max-width: 479.98px) {
  .packages-flex {
    gap: var(--mp12);
  }
  .package-box {
    padding: var(--mp16);
  }
  .logo-section {
    height: 6.462rem;
  }
  .package-logo {
    width: 3.692rem;
    height: 3.692rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .package-box:hover {
    transform: none;
  }
}
