/* Hero v10 — Stats Board: три метрики + один CTA */

.hero-v10 {
  min-height: 80vh;
  background-color: var(--background-color, #0c4a6e);
  background-image: var(--background-image, none), radial-gradient(ellipse at top, #0369a1 0%, #0c4a6e 55%);
  background-size: cover, auto;
}

.hero-v10 .hero-title {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 900;
  margin-bottom: 0.75rem;
  color: var(--text-color, #ecfeff);
  -webkit-text-fill-color: currentColor;
  background: none;
}

.hero-v10 .hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-v10 .hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 3vw, 2rem);
  max-width: 720px;
  margin: 0 auto 2.25rem;
  width: 100%;
}

.hero-v10 .hero-stat {
  padding: 1.25rem 1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  align-items: center;
  text-align: center;
}

.hero-v10 .hero-stat-value {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 800;
  color: var(--accent-color, #fde047);
  line-height: 1.1;
}

.hero-v10 .hero-stat-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.85;
}

.hero-v10 .hero-cta-single {
  justify-content: center;
}

.hero-v10 .hero-btn-primary {
  padding: 1rem 2.75rem;
  font-size: 1.15rem;
  background: var(--accent-color, #fde047) !important;
  color: #0c4a6e !important;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
}

@media (max-width: 600px) {
  .hero-v10 .hero-stats {
    grid-template-columns: 1fr;
  }
}
