/* =============================================================
   SECTION: HERO
   ============================================================= */
.hero {
  position: relative;
  background-color: #0d0c0c;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../img/hero-bg-left.svg');
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
  pointer-events: none;
  z-index: 1;
}

.hero__container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
}

.hero__content {
  max-width: 100%;
}

.hero__title {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 0;
}

.hero__brand {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.1;
  color: var(--color-white);
  text-transform: none;
}

.hero__brand--accent {
  color: var(--color-accent);
}

.hero__subtitle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.hero__subtitle-img {
  height: 28px;
  width: auto;
}

.hero__subtitle-text {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.1;
  color: var(--color-white);
}

.hero__text {
  margin-top: 14px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--color-text-muted);
  max-width: 540px;
}

.hero__buttons {
  margin-top: 36px;
  display: flex;
  gap: 20px;
}

.hero__btn {
  flex: 1;
  padding: 10px 16px;
  font-size: 14px;
}

@media (min-width: 768px) {
  .hero__container {
    flex-direction: row;
    align-items: center;
    min-height: 480px;
    background-image: url('../img/hero-bg-right.png');
    background-repeat: no-repeat;
    background-position: right -180px center;
    background-size: 600px 377px;
  }

  .hero__content {
    max-width: 440px;
    position: relative;
    z-index: 3;
  }

  .hero__brand {
    font-size: 48px;
  }

  .hero__subtitle {
    gap: 12px;
  }

  .hero__subtitle-img {
    height: 38px;
  }

  .hero__subtitle-text {
    font-size: 40px;
  }

  .hero__text {
    font-size: 16px;
  }

  .hero__btn {
    flex: initial;
    padding: 10px 24px;
  }
}

@media (min-width: 1220px) {
  .hero__container {
    min-height: 510px;
    background-position: right top;
    background-size: 53%;
  }

  .hero__content {
    max-width: 580px;
  }

  .hero__brand {
    font-size: 56px;
  }

  .hero__subtitle-img {
    height: 44px;
  }

  .hero__subtitle-text {
    font-size: 48px;
  }
}
