.hero-slider {
  position: relative;
  margin-bottom: 18px;
  min-height: 210px;
}

.hero-slider .hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: none;
}

.hero-slider .hero-slide.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.hero-slider .hero-title {
  font-size: clamp(32px, 4vw, 56px);
  margin-bottom: 12px;
}

.hero-description.strong {
  font-size: 17px;
  color: #fff;
  line-height: 1.6;
}

.hero-description .accent {
  font-weight: 700;
}

.hero-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
}

.hero-dots {
  display: flex;
  gap: 10px;
  align-items: center;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.08);
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
}

.hero-dot.active {
  background: #9ca3af;
  border-color: #9ca3af;
  transform: scale(1.1);
}

.hero-arrow {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
}

.hero-arrow:hover {
  background: rgba(255,255,255,0.14);
  border-color: #9ca3af;
  transform: translateY(-1px);
}

.hero-arrow:active {
  transform: translateY(0);
}

@media (max-width: 640px) {
  .hero-slider { min-height: 210px; }
  .hero-description.strong { font-size: 16px; }
}
