:root {
  --kiosk-black: #050505;
  --kiosk-white: #ffffff;
  --kiosk-green: #689a6f;
  --kiosk-green-dark: #4f6d53;
  --kiosk-soft: #e1ece4;
  --kiosk-text: #070707;
  --kiosk-muted: #afafaf;
}

.kiosk-page-body {
  background: #fff;
  color: var(--kiosk-text);
  font-family: "Poppins", sans-serif;
}

.kiosk-page {
  overflow: hidden;
}

.kiosk-shell {

  margin: 0px 7.5%;
}

.kiosk-hero {
  position: relative;

  color: var(--kiosk-white);
  background-color: var(--kiosk-black);
  background-image: url("../images/kiosk-page/k-herobg.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.kiosk-hero .kiosk-shell {
  position: relative;
  z-index: 1;
}

.kiosk-hero__content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 555px);
  gap: 48px;
  /* margin: 0px 7.5%; */
  align-items: center;
  padding: 120px 0 0px;
}

.kiosk-hero__copy {
  max-width: 697px;
}

.kiosk-hero__reveal {
  opacity: 0;
  transform: translateY(28px);
}

.kiosk-hero__reveal.is-visible {
  animation: kioskHeroReveal 1.1s ease forwards;
}

.kiosk-hero__reveal--1.is-visible {
  animation-delay: 0.18s;
}

.kiosk-hero__reveal--2.is-visible {
  animation-delay: 0.34s;
}

.kiosk-hero__reveal--3.is-visible {
  animation-delay: 0.5s;
}

@keyframes kioskHeroReveal {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.kiosk-hero__copy h1 {
  margin: 0;
  font-size: clamp(3rem, 5vw, 4.26rem);
  line-height: 1.26;
  letter-spacing: -0.03em;
  font-weight: 400;
}

.kiosk-hero__copy h1 span {
  color: var(--kiosk-green);
}

.kiosk-hero__copy p {
  margin: 33px 0 0;
  max-width: 679px;
  font-size: 15px;
  line-height: 28px;
  color: rgba(255, 255, 255, 0.95);
}

.kiosk-btn {

  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 33px;
  padding: 16px 31px;
  border-radius: 133px;
  background: linear-gradient(104deg, var(--kiosk-green) 54.443%, #68946e 127.52%);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  line-height: 150%;
  color: #FFFFFF;

}

.kiosk-btn:hover {
  color: #fff;
  text-decoration: none;
}

.kiosk-btn img {
  display: block;
  width: 21px;
  height: 21px;
}

.kiosk-hero__visual {
  display: flex;
  gap: 20px;
  align-items: center;
  height: 918px;
  overflow: hidden;
  position: relative;
}

/* Top/Bottom fade overlay for the moving marquee (black edges, brighter center) */
.kiosk-hero__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 1) 0%,
      rgba(0, 0, 0, 0) 18%,
      rgba(0, 0, 0, 0) 45%,
      rgba(255, 255, 255, 0.08) 50%,
      rgba(0, 0, 0, 0) 55%,
      rgba(0, 0, 0, 0) 82%,
      rgba(0, 0, 0, 1) 100%);
}

.kiosk-marquee-col {
  overflow-y: hidden !important;
  border-radius: 16px;
  position: relative;
  z-index: 1;
}

.kiosk-marquee__track {
  display: flex;
  flex-direction: column;
  gap: 20px;
  will-change: transform;
}

.kiosk-marquee__track img {
  display: block;


}

/* Scroll UP — first column */
.kiosk-marquee--up .kiosk-marquee__track {
  animation: kiosk-marquee-up 50s linear infinite;
}

/* Scroll DOWN — second column */
.kiosk-marquee--down .kiosk-marquee__track {
  animation: kiosk-marquee-down 50s linear infinite;
}

@keyframes kiosk-marquee-up {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-50%);
  }
}

@keyframes kiosk-marquee-down {
  0% {
    transform: translateY(-50%);
  }

  100% {
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .kiosk-marquee__track {
    animation: none !important;
  }
}

/* .kiosk-hero__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0) 0%, rgba(5, 5, 5, 0.15) 100%);
  pointer-events: none;
} */
/* 
.kiosk-hero__visual img {
  display: block;
  width: 100%;
  height: auto;
} */

.kiosk-intro-container {
  background-color: #fff;
  background-image: url("../images/kiosk-page/intro-bg.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 100px 0;
}

.pill-2 {
  margin-top: -3rem;
}


.kiosk-intro__content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.kiosk-intro__reveal {
  opacity: 0;
  transform: translateY(14px);
}

.kiosk-intro__reveal.is-visible {
  animation: kioskHeroReveal 0.55s ease forwards;
}

.kiosk-intro__reveal--1.is-visible {
  animation-delay: 0.05s;
}

.kiosk-intro__reveal--2.is-visible {
  animation-delay: 0.12s;
}

.kiosk-intro__reveal--3.is-visible {
  animation-delay: 0.18s;
}

.kiosk-intro__reveal--4.is-visible {
  animation-delay: 0.24s;
}

.kiosk-intro__title {

  margin: 0;
  font-weight: 400;
  font-size: 56px;
  letter-spacing: -0.01em;
  color: #000000;
  text-shadow: 0px 5.04082px 12.602px rgba(0, 0, 0, 0.15);

}

.kiosk-intro__title.start {
  text-align: start;
}

.kiosk-intro__title.end {
  text-align: end;
}

.kiosk-intro__title span {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

.kiosk-intro__title img {
  display: block;
  border-radius: 14px;
}

.kiosk-intro__stack {
  position: relative;
  display: inline-flex;
  width: 170px;
  height: 139px;
  align-items: flex-end;
  justify-content: center;
}

.kiosk-intro__stack img:first-child {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 170px;
  height: 81px;
}

.kiosk-intro__stack img:last-child {
  position: absolute;
  top: 0;
  left: 27px;
  width: 117px;
  height: 139px;
}

.kiosk-intro__summary-container {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.kiosk-intro__summary {

  max-width: 660px;
  margin: 70px 0 100px;
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  color: #000000;

}

.kiosk-feature-grid {
  overflow: visible;
  padding-bottom: 25rem !important;
  margin-left: 7.5% !important;
}

.kiosk-feature-grid .swiper-slide {

  height: auto;
  transition: transform 0.6s ease;
}

.kiosk-feature-grid .swiper-slide:nth-child(even) {
  transform: translateY(0);
}

.kiosk-feature-grid .swiper-slide:nth-child(odd) {
  transform: translateY(100%);
}

.kiosk-feature-grid .swiper-slide-active .kiosk-feature-card h3,
.kiosk-feature-grid .swiper-slide-active .kiosk-feature-card p,
.kiosk-feature-grid .swiper-slide-active .kiosk-feature-card h5,
.kiosk-feature-grid .swiper-slide .kiosk-feature-card h3,
.kiosk-feature-grid .swiper-slide .kiosk-feature-card p,
.kiosk-feature-grid .swiper-slide .kiosk-feature-card * {
  animation: none !important;
  animation-name: none !important;
  animation-duration: 0s !important;
  animation-delay: 0s !important;
  animation-fill-mode: none !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}

.kiosk-feature-grid .swiper-slide-active .kiosk-feature-card h3 {
  font-size: 23.624px !important;
}

.kiosk-feature-card {

  height: 282px;
  padding: 26px 23px 30px;
  border-radius: 20px;
  background: var(--kiosk-soft);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.kiosk-feature-card__icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(180deg, #fff 0%, #efefef 100%);
  box-shadow: 0 0 33px rgba(0, 0, 0, 0.15);
}

.kiosk-feature-card__icon img {
  display: block;
  width: 32.58px;
  height: 32.58px;
}

.kiosk-feature-card h3 {
  margin: 19px 0 0;
  font-size: 23.624px;
  line-height: 1.2;
  letter-spacing: -0.236px;
  color: #000;
  font-weight: 400;
}

.kiosk-feature-card p {
  margin: 19px 0 0;
  font-size: 12px;
  line-height: 23px;
  color: #3c3c3c;
}



.kiosk-media__frame {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  margin-bottom: 5%;
}

.kiosk-media__frame img,
.kiosk-media__frame video,
.kiosk-media__video {
  display: block;
  width: 100%;
  height: auto;
}

.kiosk-media__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.35),
    inset 0 -1px 1px rgba(0, 0, 0, 0.12),
    0 8px 28px rgba(0, 0, 0, 0.18);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0 0 6px;
  cursor: pointer;
  z-index: 2;
  transition: transform 0.2s ease, background 0.2s ease, opacity 0.25s ease, box-shadow 0.2s ease;
}

.kiosk-media__play-icon {
  width: 42px;
  height: 46px;

  display: block;
}



.kiosk-media__play:hover {
  transform: translate(-50%, -50%) scale(1.06);
  background: rgba(255, 255, 255, 0.22);
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.4),
    inset 0 -1px 1px rgba(0, 0, 0, 0.12),
    0 10px 32px rgba(0, 0, 0, 0.22);
}

.kiosk-media__frame.is-playing .kiosk-media__play {
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 991px) {
  .kiosk-media__play {
    width: 72px;
    height: 72px;
    padding-left: 4px;
  }

  .kiosk-media__play-icon {
    width: 22px;
    height: 24px;
  }
}

@media (max-width: 575px) {
  .kiosk-media__play {
    width: 56px;
    height: 56px;
    padding-left: 3px;
  }

  .kiosk-media__play-icon {
    width: 18px;
    height: 20px;
  }
}


.kiosk-showcase__heading {

  text-align: center;
  margin-bottom: 5%;
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 300;
  font-size: 60px;
  letter-spacing: -0.01em;
  color: #000000;

}

.kiosk-showcase__heading span {
  color: #4F6D53;
}



.kiosk-showcase__grid {
  /* display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  align-items: start; */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}


.kiosk-showcase-card__media {
  position: relative;
  cursor: pointer;
}

.kiosk-showcase-card__media img {
  border-radius: 19.419px;
  cursor: pointer;
}


.kiosk-showcase-card__button {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 21px;
  border-radius: 133px;
  text-decoration: none;
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  font-size: 13px;
  color: #FFFFFF;
  background: linear-gradient(93.19deg, #689A6F -54.44%, #68946E 127.52%);
  box-shadow: 0px 4px 26.3px rgba(0, 0, 0, 0.25);
  border-radius: 133px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;

}

.kiosk-showcase-card__media:hover .kiosk-showcase-card__button,
.kiosk-showcase-card__button:focus-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.kiosk-showcase-card__button:hover {
  color: #fff;
  text-decoration: none;
}

.kiosk-showcase-card__button img {
  width: 21px;
  height: 21px;
}

.kiosk-showcase-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.kiosk-showcase-card__tags span {

  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 15px;
  font-size: 9.5px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 37px;
  font-weight: 500;
  line-height: 18px;
  color: #FFFFFF;

}

.kiosk-showcase-card .kiosk-showcase-card__tags {
  margin-top: -51px;
  position: relative;
  z-index: 1;
  padding-left: 20px;
}

.kiosk-showcase-card .kiosk-showcase-card__tags span {
  border: 1px solid rgba(255, 255, 255, 0.15);
}





.kiosk-showcase-card h3 {
  margin: 35px 0 0;
  max-width: 594px;
  font-size: 27.236px;
  line-height: 1.29;
  letter-spacing: -0.272px;
  color: #000;
  font-weight: 400;
}

.kiosk-showcase-card p {
  margin: 13px 0 0;
  max-width: 594px;
  font-size: 13px;
  line-height: 27.783px;
  color: #070707;
}

.kiosk-process-container {
  padding: 130px 0;
  background-color: #0a0a0a;
  background-image: url("../images/kiosk-page/kiosk-p-bg.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.kiosk-process {
  position: relative;
  color: #fff;
  margin-bottom: 50px;
}




.kiosk-process .kiosk-shell {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: start;
}

.kiosk-process__eyebrow {
  margin: 0 0 42px;
  font-size: 12.881px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.kiosk-process__intro h2 {

  margin: 0;
  max-width: 700px;
  font-weight: 400;
  font-size: 47px;
  color: #FFFFFF;

}

.kiosk-process__intro>p:last-child {

  margin: 42px 0 0;
  max-width: 571px;
  color: #fff;
  font-weight: 300;
  font-size: 15px;

}

.kiosk-process__steps {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 485px;
  max-height: 40vh;
  overflow-y: auto;
  scrollbar-width: none;
  /* hide by default (Firefox) */
  scrollbar-color: transparent transparent;
  --process-step-gap: 25px;
  --step-circle-size: 38px;
  --step-connector-inset: 20px;
}

.kiosk-step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: calc(var(--step-circle-size) / 2 - 1px);
  top: calc(var(--step-circle-size) + var(--step-connector-inset));
  width: 2px;
  height: calc(100% - var(--step-circle-size) + var(--process-step-gap) - (2 * var(--step-connector-inset)));
  background: #689a6f;
  z-index: 0;
}

.kiosk-step {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  column-gap: 22px;
  align-items: start;
}

.kiosk-step__index {

  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid #689A6F;
  display: grid;
  place-items: center;
  color: #fff;
  font-family: "Source Code Pro", monospace;
  background: #0b0f0c;
  color: #FFFFFF;

}

.kiosk-step--active .kiosk-step__index {
  background: #689A6F;
  border-color: #689A6F;
  color: #fff;
}

.kiosk-step h3 {
  margin: 0;
  padding-top: 6px;
  font-size: 18.774px;
  line-height: 1.2;
  color: #fff;
  font-weight: 500;
}

.kiosk-step p {
  margin: 14px 0 0;
  max-width: 360px;
  font-size: 12.484px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 300;
}

.btm-carousel {
  position: relative;
  padding: 0;
  overflow: hidden;
}

.btm-carousel::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 170%;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(to top,
      #0a0a0a 0%,
      rgba(10, 10, 10, 0.92) 8%,
      rgba(10, 10, 10, 0.45) 58%,
      rgba(10, 10, 10, 0) 100%);
}

.btm-carousel .kiosk-btm-carousel .owl-stage {
  transition-timing-function: linear !important;
  align-items: baseline;
  display: flex;
}

.btm-carousel .kiosk-btm-carousel .item {
  margin-bottom: 0;
  width: auto;
}

.btm-carousel .kiosk-btm-carousel .item img {
  display: block;
  width: auto;
  max-width: none;
  height: auto;
  border-radius: 12px;
}

.kiosk-cta {
  position: relative;
  z-index: 1;

}

.kiosk-cta__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}


.kiosk-cta h2 {

  font-weight: 400;
  font-size: 44px;
  text-align: center;
  letter-spacing: -0.01em;
  color: #FFFFFF;
  line-height: 1.2;

}

.kiosk-cta h2 span {
  color: var(--kiosk-green);
}

.kiosk-cta p {
  max-width: 491px;
  margin: 24px auto 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--kiosk-muted);
}

.kiosk-cta .kiosk-btn {
  margin-top: 24px;
}

@media (max-width: 1400px) {
  .kiosk-intro__title {
    font-size: 45px;
  }
}

@media (max-width: 1300px) {
  .kiosk-intro__title {
    font-size: 35px;
  }
}

@media (max-width: 1100px) {
  .kiosk-intro__title {
    font-size: 30px;
  }

  .kiosk-showcase__heading {
    font-size: 48px;
  }

  .kiosk-showcase__grid {
    flex-direction: column;
  }
}

@media (max-width: 1199.98px) {

  .kiosk-hero__content,
  .kiosk-process .kiosk-shell,
  .kiosk-showcase__grid {
    grid-template-columns: 1fr;
  }

  .kiosk-hero__content {
    padding-top: 11rem;
  }

  .kiosk-hero__visual {
    justify-self: center;
    width: min(560px, 100%);
    height: 500px;
  }

  .kiosk-process__steps {
    margin-top: 20px;
  }
}

@media (max-width: 991.98px) {

  .kiosk-shell {
    margin: 0 5%;
  }

  .kiosk-process-container {
    padding: 50px 0;
  }

  .kiosk-process .kiosk-shell {
    flex-direction: column;
  }

  .kiosk-cta h2 {
    font-size: 36px;
  }

  .kiosk-process__eyebrow {
    margin: 0 0 18px;
  }

  .kiosk-process__intro h2 {
    font-size: 30px;
  }

  .kiosk-process__intro>p:last-child {
    margin: 20px 0 0;
    font-size: 13px;
  }

  .kiosk-intro-container {
    padding: 50px 0;
  }

  .kiosk-showcase__heading {
    font-size: 40px;
  }

  .kiosk-intro__title {
    font-size: 25px;
  }

  .kiosk-intro__title.start,
  .kiosk-intro__title.end {
    text-align: center;
  }

  .kiosk-intro__content {
    gap: 4rem;
  }

  .kiosk-intro__summary-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
  }

  .kiosk-intro__summary {
    max-width: unset;
    margin: 40px 0 20px;
  }

  .kiosk-hero {
    min-height: auto;
  }

  .kiosk-hero__content {
    gap: 28px;
    padding-top: 11rem;
  }

  .kiosk-hero__copy p {
    margin-top: 20px;
  }

  .kiosk-btn {
    margin-top: 24px;
  }



  .kiosk-intro__summary {
    font-size: 20px;
    margin-top: 28px;
  }

  .kiosk-intro__stack {
    width: 132px;
    height: 110px;
  }

  .kiosk-intro__stack img:first-child {
    width: 132px;
    height: auto;
  }

  .kiosk-intro__stack img:last-child {
    width: 90px;
    height: auto;
    left: 21px;
  }

  .kiosk-feature-grid {
    margin-top: 48px;
    padding-bottom: 56px;
  }

  .kiosk-showcase__heading {
    margin-bottom: 5%;
  }


}

@media (max-width: 767.98px) {
  .kiosk-hero__copy h1 {
    font-size: 2rem;
  }

  .kiosk-hero__visual {
    height: 360px;
  }

  .kiosk-feature-grid {
    margin: 4% 3% !important;
    padding-bottom: 0% !important;
  }

  .kiosk-showcase__heading {
    font-size: 32px;
  }

  .kiosk-showcase-card h3 {
    font-size: 25px;
  }

  .kiosk-showcase-card p {
    font-size: 12px;
    line-height: 20px;
  }

  .kiosk-cta h2 {
    font-size: 28px;
  }

  .kiosk-intro__content {
    gap: 1.5rem;
  }

  .kiosk-intro__summary {
    font-size: 15px;
    margin-top: 20px;
  }

  .kiosk-intro__title span {
    display: inline;
  }

  .kiosk-intro__title img {
    width: 110px;
    margin: 12px auto;
  }

  .kiosk-intro__stack {
    display: inline-flex;
    width: 110px;
    height: 90px;
    vertical-align: middle;
  }

  .kiosk-feature-grid .swiper-slide:nth-child(even),
  .kiosk-feature-grid .swiper-slide:nth-child(odd) {
    transform: unset;
  }

  .kiosk-showcase-card__button {
    padding: 10px 12px;
    justify-content: center;
    font-size: 12px;
    font-weight: 400;
  }

  .kiosk-process .kiosk-shell {
    gap: 20px;
  }

  .kiosk-step p {
    line-height: 22px;
  }

  .kiosk-cta__inner::before {
    white-space: normal;
    top: -34px;
  }
}

@media (max-width: 450px) {
  .kiosk-hero__copy h1 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .kiosk-hero__copy p {
    font-size: 13px;
    line-height: 20px;
  }

  .kiosk-cta__inner {
    margin: 0 3%;
  }

  .kiosk-cta h2 {
    font-size: 22px;
  }
}