/* Hero V2 — перший екран нового дизайну */
.vb-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  padding: 100px 0 80px;
  overflow: hidden;
  background: #111;
  display: flex;
  align-items: center;
}

.vb-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.vb-hero__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.62) 48%, rgba(0, 0, 0, 0.22) 100%);
}

.vb-hero__glow {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: radial-gradient(70% 60% at 80% 100%, rgba(255, 45, 33, 0.18), transparent 60%);
}

.vb-hero__container {
  position: relative;
  z-index: 3;
  width: 100%;
}

.vb-hero__content {
  max-width: 820px;
}

.vb-hero__chip {
  margin-bottom: 24px;
}

.vb-hero__title {
  font-family: 'Kenyan Coffee', system-ui, sans-serif;
  font-weight: 400;
  font-size: clamp(44px, 6vw, 84px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: #fff;
  margin: 0 0 24px;
}

.vb-hero__title .vb-accent {
  color: var(--red, #FF2D21);
}

.vb-hero__text {
  max-width: 640px;
  font-size: clamp(18px, 1.5vw, 20px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 0 32px;
}

.vb-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

@media (max-width: 767px) {
  .vb-hero { min-height: 100vh; min-height: 100svh; padding: 72px 0 56px; }
}
