.rof-hero {
  position: relative;
  background-color: #0a1216;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 60px 0 0;
  overflow: hidden;
}

.rof-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(10, 18, 22, 0.78) 0%,
      rgba(10, 18, 22, 0.25) 55%,
      rgba(10, 18, 22, 0) 100%
    ),
    linear-gradient(
      180deg,
      rgba(10, 18, 22, 0.5) 0%,
      rgba(10, 18, 22, 0.1) 50%,
      rgba(10, 18, 22, 0.9) 100%
    );
  pointer-events: none;
}

.rof-hero__inner {
  position: relative;
  display: flex;
  align-items: center;
}

.rof-hero__left {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 560px;
  padding: 40px 0;
}

.rof-hero__label {
  font-style: italic;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #fff;
  font-size: 18px;
  text-align: center;
}

.rof-hero__title {
  font-size: 56px;
  line-height: 1.05;
  font-weight: 900;
  margin: 0;
  text-transform: capitalize;
  text-align: center;
  letter-spacing: -0.01em;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
}

.rof-hero__subtitle {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
  max-width: 460px;
  text-align: center;
}

.rof-hero__cta {
  margin: 0 auto;
}

.rof-hero__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 18px;
  max-width: 560px;
}

.rof-hero__features .rof-hero-feature:nth-child(3):last-child {
  grid-column: 1 / -1;
  justify-self: center;
  width: calc(50% - 7px);
}

.rof-hero-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(
    180deg,
    rgba(255, 122, 0, 0.18) 0%,
    rgba(13, 19, 24, 0.78) 100%
  );
  border: 1px solid rgba(255, 122, 0, 0.35);
  border-radius: 12px;
  padding: 10px 14px;
  backdrop-filter: blur(6px);
}

.rof-hero-feature__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.rof-hero-feature__icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.rof-hero-feature__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.rof-hero-feature__title {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1;
}

.rof-hero-feature__text {
  margin: 0;
  font-size: 11px;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.72);
}

.rof-hero__right {
  position: absolute;
  right: -4%;
  bottom: 0;
  width: 65%;
  max-width: 900px;
  pointer-events: none;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

.rof-hero__char {
  width: 100%;
  max-width: none;
  height: auto;
  object-fit: contain;
  display: block;
  margin-bottom: 0;
  filter: drop-shadow(0 12px 36px rgba(0, 0, 0, 0.55));
}

@media (max-width: 1024px) {
  .rof-hero__title {
    font-size: 48px;
  }
  .rof-hero__right {
    width: 60%;
    right: -2%;
  }
}

@media (max-width: 860px) {
  .rof-hero {
    padding: 0 0 0;
  }
  .rof-hero__inner {
    min-height: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .rof-hero__left {
    padding-bottom: 0;
    max-width: 100%;
    width: 100%;
    align-items: center;
    text-align: center;
    order: 1;
  }
  .rof-hero__subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  .rof-hero__features {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }
  .rof-hero__right {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    max-width: 420px;
    margin: 32px auto 0;
    order: 2;
  }
  .rof-hero__title {
    font-size: 40px;
  }
}

@media (max-width: 520px) {
  .rof-hero__features {
    grid-template-columns: 1fr;
  }
  .rof-hero__features .rof-hero-feature:nth-child(3):last-child {
    width: 100%;
  }
  .rof-hero__title {
    font-size: 32px;
  }
  .rof-hero__right {
    max-width: 320px;
  }
}
