.hero {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  background: #060201;
}
@media (max-width: 767.98px) {
  .hero {
    min-height: 740px;
  }
}
.hero:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 2;
  height: 180px;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.1));
}
.hero__banner, .hero__banner:after {
  position: absolute;
  inset: 0;
}
.hero__banner {
  z-index: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0) 34%);
}
.hero__banner:after {
  content: "";
  z-index: -1;
  background: linear-gradient(90deg, rgba(5, 5, 5, 0.82) 0%, rgba(5, 5, 5, 0.72) 35%, rgba(5, 5, 5, 0.15) 65%, rgba(5, 5, 5, 0.05) 100%), url("/Firefly/templates/default/assets/images/bg_new.webp") no-repeat center 60%/cover;
}
@media (max-width: 767.98px) {
  .hero__banner:after {
    background: linear-gradient(90deg, rgba(5, 5, 5, 0.76) 0%, rgba(5, 5, 5, 0.48) 100%), url("/Firefly/templates/default/assets/images/bg_new.webp") no-repeat 62% center/cover;
  }
}
.hero__inner {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 680px;
  padding: 146px 0 42px;
}
@media (max-width: 767.98px) {
  .hero__inner {
    min-height: 740px;
    padding-top: 120px;
  }
}
.hero h1 {
  max-width: 700px;
  margin: 0;
  color: var(--white);
  font-size: clamp(4rem, 5.2vw, 6rem);
  font-weight: 700;
  line-height: 1.02;
}
@media (max-width: 767.98px) {
  .hero h1 {
    max-width: 420px;
    font-size: clamp(3.7rem, 10vw, 5.4rem);
  }
}
.hero__description {
  max-width: 700px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 2rem;
  line-height: 1.45;
}
@media (max-width: 767.98px) {
  .hero__description {
    max-width: 390px;
    margin-top: 18px;
    font-size: 1.8rem;
  }
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.hero__actions .ui__btn,
.hero__actions .hero__phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 12px 24px;
  font-size: 1.6rem;
}
@media (max-width: 767.98px) {
  .hero__actions {
    width: 100%;
    margin-top: 60px;
  }
  .hero__actions .ui__btn,
  .hero__actions .hero__phone {
    flex: 1 1 220px;
  }
}
.hero__phone {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 6px;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.hero__phone:hover, .hero__phone:focus {
  color: var(--white);
  border-color: var(--gold-100);
  background: rgba(255, 255, 255, 0.1);
}
.hero__messengers {
  margin-top: 22px;
}
@media (max-width: 767.98px) {
  .hero__messengers {
    margin-top: 40px;
  }
}
.hero__messengers-title {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 1.35rem;
}
.hero__messengers-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
@media (max-width: 767.98px) {
  .hero__messengers-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.hero__messenger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  padding: 8px 14px;
  color: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.12);
  font-size: 1.35rem;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.hero__messenger:not([aria-disabled=true]):hover, .hero__messenger:not([aria-disabled=true]):focus {
  color: var(--white);
  border-color: var(--gold-100);
  background: rgba(255, 255, 255, 0.08);
}
.hero__messenger[aria-disabled=true] {
  cursor: default;
  opacity: 0.62;
}
.hero__messenger-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
}
.hero__messenger-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}
.hero__info {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  width: min(100%, 820px);
  margin-top: auto;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  background: rgba(12, 10, 8, 0.48);
  backdrop-filter: blur(6px);
}
@media (max-width: 767.98px) {
  .hero__info {
    grid-template-columns: 1fr;
    width: 100%;
    padding: 6px;
    margin-top: 60px;
  }
}
.hero__info-item {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-width: 0;
  padding: 10px 14px;
}
.hero__info-item + .hero__info-item {
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}
@media (max-width: 767.98px) {
  .hero__info-item {
    padding: 10px 12px;
  }
  .hero__info-item + .hero__info-item {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-left: 0;
  }
}
.hero__info-img {
  width: 32px;
  height: 32px;
}
.hero__info-img svg {
  width: 100%;
  height: 100%;
  fill: var(--gold-100);
}
.hero__info-title, .hero__info-description {
  margin: 0;
}
.hero__info-title {
  color: var(--white);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.2;
}
.hero__info-description {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.35rem;
  line-height: 1.3;
}
.hero__stats {
  position: absolute;
  right: 40px;
  bottom: 32px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 767.98px) {
  .hero__stats {
    right: 16px;
    bottom: 18px;
    transform: scale(0.8);
    transform-origin: right bottom;
  }
}
.hero__feed-ico {
  display: block;
  width: 150px;
  height: 56px;
  background: url("/Firefly/templates/default/assets/images/ya.webp") no-repeat right center/contain;
  opacity: 0.9;
}
.hero__stats-item {
  width: 58px;
}
.hero__stats-item img {
  display: block;
  width: 100%;
  height: 72px;
  object-fit: contain;
}
@media (max-width: 767.98px) {
  .hero__info {
    margin-bottom: 62px;
  }
}

/*# sourceMappingURL=style.css.map */
