.heroFrame {
  position: relative;
  width: 100%;
  min-height: 760px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 72px;
  overflow: hidden;
  background: #111111;
}

.heroVideo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.heroOverlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.72) 0%,
    rgba(0, 0, 0, 0.52) 38%,
    rgba(0, 0, 0, 0.28) 100%
  );
}

.heroContent {
  position: relative;
  z-index: 2;
  max-width: 980px;
  margin: 0 auto;
  color: #ffffff;
}

.heroTitle {
  font-size: clamp(42px, 6.6vw, 96px);
  line-height: 0.96;
  letter-spacing: -0.05em;
  font-weight: 700;
  margin-bottom: 24px;
}

.heroDescription {
  max-width: 780px;
  margin: 0 auto;
  font-size: 19px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
}

.heroActions {
  margin-top: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.heroPrimaryButton,
.heroSecondaryButton {
  min-width: 190px;
  padding: 16px 24px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease;
}

.heroPrimaryButton {
  background: #ffffff;
  color: #111111;
}

.heroSecondaryButton {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.heroPrimaryButton:hover,
.heroSecondaryButton:hover {
  transform: translateY(-1px);
}

@media (max-width: 1024px) {
  .heroFrame {
    min-height: 700px;
    padding: 116px 24px 64px;
  }

  .heroDescription {
    font-size: 17px;
  }
}

@media (max-width: 768px) {
  .heroFrame {
    min-height: 620px;
    padding: 108px 20px 56px;
  }

  .heroTitle {
    font-size: clamp(34px, 10vw, 52px);
    line-height: 1.02;
    margin-bottom: 18px;
  }

  .heroDescription {
    font-size: 15px;
    line-height: 1.6;
    max-width: 100%;
  }

  .heroActions {
    margin-top: 28px;
    flex-direction: column;
    gap: 12px;
  }

  .heroPrimaryButton,
  .heroSecondaryButton {
    width: 100%;
    max-width: 320px;
    min-width: 0;
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .heroFrame {
    min-height: 560px;
    padding: 100px 16px 48px;
  }

  .heroTitle {
    font-size: 34px;
  }

  .heroDescription {
    font-size: 14px;
  }
}