.hero {
  background: #681675;
  padding: 40px 0 0;
  overflow: hidden;
  position: relative;
}

.hero-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 48px 24px 64px;
  display: flex;
  align-items: center;
  gap: 40px;
  position: relative;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-title {
  font-size: 62px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.05;
  color: #fff;
}

.hero-title span,
.hero-title strong,
.hero-title em {
  color: #fce046;
  font-size: 88px;
  font-style: normal;
  display: inline-block;
}

.hero-subtitle {
  font-size: 18px;
  font-weight: 400;
  color: #f1f1f1;
  line-height: 26px;
}

.hero .btn-primary {
  align-self: flex-start;
}

.hero-image {
  position: absolute;
  right: -40px;
  top: 0;
  width: 650px;
  z-index: 1;
  pointer-events: none;
}

.hero-image img {
  width: 100%;
}

@media (max-width: 768px) {
  .hero {
    padding: 0;
  }
  .hero-inner {
    padding: 32px 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding-bottom: 0;
    min-height: auto;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-title span,
  .hero-title strong,
  .hero-title em {
    font-size: 52px;
  }

  .hero-subtitle {
    font-size: 15px;
    line-height: 22px;
  }

  .hero-image {
    position: relative;
    right: auto;
    top: auto;
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
  }
}
