@font-face {
  font-family: "FONTSPRING DEMO - Tenon Medium";
  src: url("path-to-tenon-medium-font.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Druk Text Trial";
  src: url("path-to-druk-text-trial-font.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
}

.hero-content {
  max-width: 100vw;
  margin: 0 auto;
  padding: 45px 40px;
  background-color: black;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 60px;
  align-items: center;
}

.grid-item {
  margin: 0;
  padding: 0;
}

.grid-image {
  /* width: 100%; */
  /* height: auto; */
}

.phone-container {
  position: relative;
  max-height: 500px;
  overflow: hidden;
}

.phone-image {
  width: 100%;
  height: auto;
  margin-bottom: -2px;
}

.engagement-stats {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  text-align: center;
}

.stat i {
  font-size: 24px;
  margin-bottom: 5px;
}

.stat span {
  font-family: "FONTSPRING DEMO - Tenon Medium", sans-serif;
  font-size: 18px;
}

.hero-text {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 60px;
}

.title {
  font-family: "Druk Text Trial", sans-serif;
  font-size: 50px;
  font-weight: 700;
  -webkit-text-stroke: 2px #ebff03;
  color: transparent;
  line-height: 1.2;
  max-width: 600px;
  margin: 0;
}

.subtitle {
  color: #ebff03;
  font-family: "FONTSPRING DEMO - Tenon Medium", sans-serif;
  font-size: 24px;
  max-width: 400px;
  margin: 0;
}

.creative-section {
  margin: 2rem 0;
  width: 100%;
  overflow: hidden;
}

.creative-section .splide__track {
  display: flex;
  align-items: center;
}

.creative-section .splide__list {
  display: flex;
  align-items: center;
}

.creative-section .splide__slide {
  opacity: 0.6;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
}

.creative-section .splide__slide.is-active {
  opacity: 1;
}

.creative-section .grid-item {
  flex: 0 0 auto;
  margin: 0 1rem;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.creative-section .grid-item:hover {
  opacity: 1;
}

.creative-section .grid-image,
.creative-section .phone-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  object-fit: cover;
}

.creative-section .marquee-wrapper {
  display: flex;
  align-items: center;
  animation: marquee 15s linear infinite;
}

.creative-section .marquee-wrapper:hover {
  animation-play-state: paused;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 991px) {
  .hero-content {
    padding: 40px 20px;
  }

  .image-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hero-text {
    flex-direction: column;
    gap: 30px;
  }

  .title {
    font-size: 50px;
  }

  .subtitle {
    font-size: 20px;
  }
}

@media (max-width: 640px) {
  .hero-content {
    padding: 20px;
    margin: 0 !important;
  }

  .title {
    font-size: 36px;
  }

  .subtitle {
    font-size: 18px;
  }
  .grid-item img {
    max-height: 200px;
  }
}