.stl-section-heading {
  width: min(100%, 840px);
  margin: 0 auto clamp(1.5rem, 4vw, 2.5rem);
  text-align: center;
}

.stl-section-heading h2:not(.display-2) {
  margin: 0;
  font-family: Lufga, Arial, sans-serif;
  font-size: clamp(2.65rem, 7vw, 6.5rem);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.065em;
  text-wrap: balance;
  text-shadow: 0 18px 42px rgba(2, 8, 8, 0.12);
}

.stl-section-heading p:not(.para-2) {
  max-width: 700px;
  margin: 1rem auto 0;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.58;
  color: rgba(2, 8, 8, 0.64);
}

.stl-section-heading-dark p {
  color: rgba(2, 8, 8, 0.64);
}

.stl-home-card-wrap {
  width: min(100%, 1180px);
  margin: 0 auto;
}

.stl-home-card-wrap .image-wrapper {
  position: relative;
  flex: 1 1 auto;
  min-height: 280px;
  aspect-ratio: 16 / 11;
  overflow: hidden;
}

.stl-booking-visual {
  position: absolute;
  inset: 0;
}

.stl-booking-visual-content {
  position: absolute;
  inset: 0;
  transition: filter 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

.stl-booking-metric {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  font-family: Lufga, Arial, sans-serif;
  font-size: clamp(3.5rem, 10vw, 8rem);
  font-weight: 500;
  line-height: 0.82;
  color: #c2b066;
  letter-spacing: -0.08em;
  pointer-events: none;
  opacity: 0;
  transform: scale(0.94);
  transition:
    opacity 280ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 280ms cubic-bezier(0.34, 1.45, 0.64, 1);
}

.stl-booking-card:hover .stl-booking-visual-content,
.stl-booking-card:focus-within .stl-booking-visual-content {
  filter: blur(5px);
}

.stl-booking-card:hover .stl-booking-metric,
.stl-booking-card:focus-within .stl-booking-metric {
  opacity: 1;
  transform: scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .stl-booking-visual-content,
  .stl-booking-metric {
    transition: none;
  }

  .stl-booking-card:hover .stl-booking-metric,
  .stl-booking-card:focus-within .stl-booking-metric {
    transform: none;
  }
}

.stl-card-animation {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: transparent;
}

.stl-time-visual,
.stl-chart-visual {
  display: grid;
  place-items: center;
}

.stl-schedule-viewport {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.stl-schedule-dates {
  position: absolute;
  top: 0.65rem;
  right: 0;
  left: 0;
  z-index: 1;
  display: flex;
  overflow: hidden;
  pointer-events: none;
}

.stl-schedule-dates-sequence {
  display: flex;
  flex: 0 0 auto;
  gap: 2.5rem;
  align-items: center;
  justify-content: space-around;
  min-width: 100%;
  padding: 0 1.25rem;
  animation: stl-schedule-dates-marquee 18s linear infinite;
}

.stl-schedule-dates-sequence span {
  flex: 0 0 auto;
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1;
  color: rgba(2, 8, 8, 0.38);
  letter-spacing: -0.02em;
}

@keyframes stl-schedule-dates-marquee {
  to {
    transform: translateX(-100%);
  }
}

.stl-schedule-scroll {
  display: flex;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.stl-schedule-panel {
  position: relative;
  display: flex;
  flex: 0 0 auto;
  min-width: 100%;
  height: 100%;
  overflow: visible;
  animation: stl-schedule-marquee 14s linear infinite;
}

@keyframes stl-schedule-marquee {
  to {
    transform: translateX(-100%);
  }
}

.stl-schedule-board {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  justify-content: space-evenly;
  width: 100%;
  min-width: 100%;
  height: 100%;
  padding: 2rem 0.5rem 0.85rem;
  overflow: visible;
}

.stl-schedule-lane {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.55rem;
  align-items: center;
}

.stl-schedule-booking {
  display: block;
  flex: 0 0 auto;
  height: 2rem;
  background: transparent;
  border: 1px solid rgba(2, 8, 8, 0.14);
  border-radius: 0.6rem;
  box-shadow: 0 8px 22px rgba(2, 8, 8, 0.12);
}

.stl-time-picker {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  width: min(82%, 25rem);
  height: 15rem;
  padding: 1rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(2, 8, 8, 0.08);
  backdrop-filter: blur(16px);
  mask-image: linear-gradient(
    180deg,
    transparent,
    #000 20%,
    #000 80%,
    transparent
  );
}

.stl-time-picker::after {
  position: absolute;
  top: 50%;
  right: 1rem;
  left: 1rem;
  height: 2.7rem;
  pointer-events: none;
  content: "";
  border: 1px solid rgba(194, 176, 103, 0.55);
  border-radius: 0.75rem;
  transform: translateY(-50%);
}

.stl-time-column {
  overflow: hidden;
}

.stl-time-track {
  display: grid;
  gap: 0.6rem;
  animation: stl-time-scroll 6s linear infinite;
}

.stl-time-track span {
  display: grid;
  place-items: center;
  height: 2.1rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(2, 8, 8, 0.5);
  white-space: nowrap;
}

@keyframes stl-time-scroll {
  to {
    transform: translateY(-50%);
  }
}

.stl-conversion-funnel {
  width: min(92%, 26rem);
  overflow: hidden;
}

.stl-conversion-funnel-chart {
  height: 8.5rem;
}

.stl-conversion-funnel-chart svg {
  display: block;
  width: 100%;
  height: 100%;
}

@media (prefers-reduced-motion: reduce) {
  .stl-schedule-dates-sequence,
  .stl-schedule-panel,
  .stl-time-track {
    animation: none;
  }
}
