
.hero {
  position: relative;
  margin: 0 0.5rem;
  border-radius: 24px;
  overflow: hidden;
  background-image: var(--bg-desktop);
  background-size: cover;
  background-repeat: no-repeat;
  color: #ffffff;
}

.hero__container {
  position: relative;
  min-height: 620px;
  padding: 14.375rem 3rem 3rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
}

.hero__content {
  z-index: 2;
}

.hero__tagline {
  display: inline-block;
  color: var(--yellow); 
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero__title {
  text-transform: uppercase;
  margin: 0 0 24px 0;
}

.hero__description {
  font-size: 1.375rem;
  color: var(--white);
  margin: 0 0 40px 0;
  max-width: 480px;
}

.hero__btn {
  display: inline-flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem 0 5.5rem;
    gap: 1rem;
    background-color: var(--red);
    color: var(--white);
    text-decoration: none;
    font-size: 1.5rem;
    width: 29.125rem;
    height: 8.8125rem;
    border-radius: 300px;
}

.hero__btn-icon {
  width: 7.625rem;
  height: 7.625rem;
  background-color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero__btn-icon img {
  width: 2.975rem;
  height: auto;
  object-fit: contain;
}

.hero__badge {
  position: absolute;
  right: 2.5rem;
  bottom: 2.5rem;
  background: rgba(18, 18, 18, 0.85);
  backdrop-filter: blur(10px);
  border-radius: 45px;
  padding:  1.5rem;
  max-width: 30.125rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  z-index: 2;
}

.hero__badge-title {
  color: var(--white);
  font-size: 2.5rem;
  font-weight: 600;
  margin: 0 0 0.75rem 0;
}

.hero__badge-text {
  font-size: 1.375rem;
  color: #DEDEDE;
  margin: 0;
}
.hero__badge strong{
    color: var(--yellow);
}

@media screen and (max-width: 768px) {
  .hero {
    background-image: var(--bg-mobile);
    background-position: center top;
    border-radius: 16px;
    margin: 0;
  }

  .hero__container {
    min-height: auto;
    padding: 5rem 0 1.5rem 0;
    display: flex;
    flex-direction: column;
  }

  .hero__content {
    max-width: 100%;
    margin-bottom: 24px;
    text-align: center;
  }

  .hero__tagline {
    margin-bottom: 0.75rem;
  }

  .hero__title {
    margin-bottom: 1rem;
  }

  .hero__description {
    font-size: 0.875rem;
    margin-bottom: 240px;
  }

  .hero__btn {
    width: 100%;
    box-sizing: border-box;
    width: 21.125rem;
    height: 5.25rem;
    font-size: 1rem;
    padding: 0 1rem 0 5rem;
  }
  .hero__btn-icon {
    width: 4.5rem;
    height: 4.5rem;
   }
   .hero__btn-icon img {
    width: 1.75rem;
    }

  .hero__badge {
    position: static;
    max-width: 100%;
    margin-top: 16px;
    background: #121212;
    padding: 20px;
    border-radius: 16px;
  }

  .hero__badge-title {
    font-size: 1.5rem;
  }

  .hero__badge-text {
    font-size: 0.875rem;
  }
}