.mfr-hero {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 80px 0 60px;
  overflow: hidden;
}

.mfr-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.mfr-hero__kicker {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: #fdc700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 12px;
}

.mfr-hero__title {
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 0.95;
  margin-bottom: 24px;
}

.mfr-hero__title span {
  display: block;
}

.mfr-hero__title .line2 {
  color: var(--color-primary);
  text-shadow: 0 0 30px rgba(0, 229, 255, 0.4);
}

.mfr-hero__text {
  color: var(--color-text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 440px;
}

.mfr-hero__image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.mfr-hero__image img {
  max-height: 500px;
  width: auto;
  object-fit: contain;
}

.mfr-hero .mfr-btn--primary {
  background: linear-gradient(90deg, #fdc700 0%, #ff6900 100%);
  color: #000;
  box-shadow: 0px 0px 32px 0px rgba(250, 204, 21, 0.5);
}

.mfr-hero .mfr-btn--primary:hover {
  opacity: 0.9;
  color: #000;
}

@media (max-width: 1023px) {
  .mfr-hero {
    padding: 40px 0;
  }
}

@media (max-width: 767px) {
  .mfr-hero {
    padding: 20px 0;
  }

  .mfr-hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .mfr-hero__text {
    margin: 0 auto 32px;
  }

  .mfr-hero__image img {
    max-height: 300px;
  }
}
