/* Hero v9 — Live Ticker: бегущая строка + центр + 2 CTA */

.hero-v9 {
  min-height: 82vh;
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  justify-content: flex-start !important;
  padding-top: 0;
  background-color: var(--background-color, #18181b);
  background-image: var(--background-image, none), linear-gradient(180deg, #27272a 0%, #18181b 45%);
  background-size: cover, auto;
}

.hero-v9 .hero-ticker-outer {
  width: 100%;
  overflow: hidden;
  background: color-mix(in srgb, var(--accent-color, #f472b6) 18%, #09090b);
  border-bottom: 1px solid color-mix(in srgb, var(--accent-color, #f472b6) 40%, transparent);
  padding: 0.65rem 0;
}

.hero-v9 .hero-ticker-track {
  display: flex;
  width: max-content;
  animation: hero-v9-marquee 28s linear infinite;
}

.hero-v9 .hero-ticker-text {
  flex-shrink: 0;
  padding-right: 4rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-color, #f472b6);
  white-space: nowrap;
}

@keyframes hero-v9-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.hero-v9 .hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 2rem;
}

.hero-v9 .hero-title {
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 900;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, #fafafa, var(--accent-color, #f472b6));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-v9 .hero-subtitle {
  font-size: clamp(1rem, 2.2vw, 1.3rem);
  opacity: 0.9;
}

@media (prefers-reduced-motion: reduce) {
  .hero-v9 .hero-ticker-track {
    animation: none;
    justify-content: center;
    width: 100%;
    flex-wrap: wrap;
  }
  .hero-v9 .hero-ticker-text:last-child {
    display: none;
  }
}
