.marquee_label {
  text-align: center;
  font-size: 2.375rem;
  font-weight: 600;
  display: block;
  line-height: 1.2;
  cursor: default;
  user-select: none;
}

.tagline-hash {
  background: linear-gradient(135deg, #ff6b35, #c13bff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  display: inline-block;
  animation: hashPulse 3s ease-in-out infinite;
}

@keyframes hashPulse {
  0%, 100% { filter: brightness(1); }
  50%       { filter: brightness(1.35); }
}

.tagline-word {
  display: inline-block;
  position: relative;
  transition: color 0.3s ease;
}

.tagline-word::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, #ff6b35, #c13bff);
  transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.tagline-word:hover {
  background: linear-gradient(135deg, #ff6b35, #c13bff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transform: translateY(-3px);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.3s ease;
}

.tagline-word:hover::after {
  width: 100%;
}

.marquee_label:hover .tagline-word:not(:hover) {
  opacity: 0.45;
  transition: opacity 0.3s ease;
}

.marquee-content {
  text-align: center;
  margin-bottom: 2rem;
}

.marquee-content h3 {
  font-size: 1.5rem;
  color: #64748b;
  margin-bottom: 0.5rem;
}

.marquee-section {
  margin: 0 2rem;
  /* padding: 2rem; */
  overflow: hidden;
}

.marquee {
  display: flex;
  width: max-content;
  animation: scroll 100s linear infinite;
  gap: 3rem;
  padding: 2rem;
}

.marquee-group {
  display: flex;
  gap: 3rem;
  align-items: center;
}

.brand-logo img {
  height: 80px;
  width: auto;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media only screen and (max-width: 600px) {
  .marquee-group {
    gap: 1rem;
  }
  .marquee_label {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    display: block;
    line-height: 1.2;
    cursor: default;
    user-select: none;
  }
  .marquee {
    gap: 1rem !important;
    animation: scroll 100s linear infinite !important;
  }
}
