.hero-dynamic .hero-dynamic-text {
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.hero-dynamic-title,
.hero-dynamic-subtitle {
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 1;
  transform: translateX(0);
}

.hero-dynamic-title.hide,
.hero-dynamic-subtitle.hide {
  opacity: 0;
  transform: translateX(-60px);
  transition-delay: 0s;
}

.hero-dynamic-subtitle {
  transition-delay: 0.2s;
}

.hero-dynamic-subtitle.hide {
  transition-delay: 0s;
}

.hero-progress-dots {
  display: flex;
  gap: 0.5rem;
  justify-content: flex-start;
}

.hero-progress-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  transition: all 0.3s ease;
  cursor: pointer;
}

.hero-progress-dot.active {
  background: rgba(255,255,255,0.9);
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .hero-dynamic .hero-dynamic-text {
    min-height: 150px;
  }
}
