.hero-banner {
  position: relative;
  width: 100%;
  background-color: transparent;
  background-image:
    linear-gradient(
      135deg,
      rgba(3, 111, 217, 0.016) 0%,
      rgba(115, 206, 249, 0.016) 100%
    ),
    linear-gradient(rgba(1, 4, 17, 0.55), rgba(1, 4, 17, 0.55));
}

.hero-banner__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(1rem, 3vw, 3rem);
  max-width: 1920px;
  margin: 0 auto;
}

.hero-banner__content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  max-width: 50rem;
  padding-left: 5rem;
}

.hero-banner__deco {
  position: absolute;
  z-index: 0;
  width: auto;
  height: auto;
  max-width: min(280px, 55%);
  pointer-events: none;
  user-select: none;
}

.hero-banner__deco--tr {
  top: -10%;
  left: -5%;
  transform: translate(15%, -20%);
}

.hero-banner__deco--bl {
  bottom: 20%;
  right: -5%;
  transform: translate(-20%, 25%);
}

.hero-banner__content > :not(.hero-banner__deco) {
  position: relative;
  z-index: 1;
}

.hero-banner__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 1.25rem;
  padding: 0.35rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.85);
}

.hero-banner__badge-icon {
  display: block;
  width: 0.875rem;
  height: 0.875rem;
  object-fit: contain;
  flex-shrink: 0;
}

.hero-banner__title {
  margin: 0 0 0.5rem;
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.02em;
  background: linear-gradient(90deg, #63C0AE 0%, #2B99D7 32.69%, #DEEBF6 67.79%, #2066B1 100%),
linear-gradient(0deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0));

  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-banner__subtitle {
  margin: 0 0 1.25rem;
  font-size: clamp(1rem, 2vw, 1.75rem);
  font-weight: 300;
  letter-spacing: 0.59em;
  color: rgba(255, 255, 255, 0.9);
}

.hero-banner__slogan {
  margin: 0 0 2rem;
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 400;
  line-height: 1.6;
  color: #99A1AF;
}

.hero-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-banner__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.875rem 1.5rem;
  border-radius: 999px;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.hero-banner__btn:hover {
  transform: translateY(-1px);
}

.hero-banner__btn--primary {
  background: linear-gradient(90deg, #2066B1 0%, #63C0AE 45.67%, #75C4EC 99.99%);
  color: #fff;
  box-shadow: 0 8px 24px rgba(43, 124, 255, 0.35);
}

.hero-banner__btn--primary:hover {
  box-shadow: 0 12px 32px rgba(43, 124, 255, 0.45);
}

.hero-banner__btn--secondary {
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.hero-banner__btn--secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}

.hero-banner__btn-arrow {
  font-size: 1.125rem;
  line-height: 1;
}

.hero-banner__visual {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 0;
}

.hero-banner__visual-img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center right;
}

@media (max-width: 1280px) {
  .hero-banner__content {
    padding-left: 2rem;
  }
}

@media (max-width: 768px) {
  .hero-banner {
    overflow: hidden;
  }

  .hero-banner__inner {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    max-width: none;
  }

  .hero-banner__visual {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    max-width: 80%;
    z-index: 0;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    min-width: 0;
    pointer-events: none;
  }

  .hero-banner__visual-img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
    object-position: right bottom;
  }

  .hero-banner__content {
    position: relative;
    z-index: 1;
    flex: 0 1 auto;
    align-self: center;
    max-width: 50%;
    padding-left: 0.5rem;
  }

  .hero-banner__deco {
    max-width: min(140px, 45%);
  }

  .hero-banner__deco--tr {
    transform: translate(5%, -10%);
  }

  .hero-banner__deco--bl {
    transform: translate(-10%, 15%);
  }

  .hero-banner__title {
    font-size: clamp(1.5rem, 7vw, 2.25rem);
  }

  .hero-banner__badge {
    margin: 0.5rem 0;
    font-size: 0.625rem;
  }

  .hero-banner__subtitle {
    font-size: 0.625rem;
    letter-spacing: 0.12em;
    margin: 0 0 1rem;
  }

  .hero-banner__slogan {
    margin-bottom: 1.25rem;
    font-size: 0.9375rem;
    margin: 0 0 0.2rem;
  }

  .hero-banner__actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 16rem;
    gap: 0.2rem;
    padding-bottom: 0.5rem;
  }

  .hero-banner__btn {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
  }

  .hero-banner__btn--secondary,
  .hero-banner__btn--primary {
    width: 100px;
  }
}
