.section-hero-banner {
  position: relative;
  overflow: hidden;
  padding: 56px 32px 40px;
  color: #121212;
}

.section-hero-banner__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(42% 38% at 50% 60%, rgba(99, 211, 206, 0.12) 0%, rgba(70, 134, 239, 0.1) 35%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
  z-index: 0;
}

.section-hero-banner__container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  align-items: center;
}

.section-hero-banner__left {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 640px;
}

.section-hero-banner__ratings {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.section-hero-banner__rating {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border: 1px solid #e6e6e6;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.02);
}

.section-hero-banner__rating-icon {
  width: 20px;
  height: 20px;
  overflow: hidden;
  border-radius: 6px;
}

.section-hero-banner__rating-score {
  font-family: "Involve", "Arial", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  color: #000000;
}

.section-hero-banner__rating-label {
  font-family: "Involve", "Arial", sans-serif;
  font-weight: 500;
  font-size: 13px;
  line-height: 18px;
  color: #333333;
}

.section-hero-banner__title {
  font-family: "Archivo", "Arial", sans-serif;
  font-weight: 900;
  font-size: 54px;
  line-height: 1.1;
  color: #000000;
}

.section-hero-banner__title strong,
.section-hero-banner__title .has-accent {
  background: linear-gradient(90deg, #63d3ce 0%, #4686ef 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.section-hero-banner__subtitle {
  margin: 0;
  font-family: "Involve", "Arial", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  color: #333333;
}

.section-hero-banner__cta-wrapper {
  display: inline-flex;
}

.section-hero-banner__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 28px;
  background: #121212;
  color: #ffffff;
  text-decoration: none;
  font-family: "Involve", "Arial", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  border-radius: 14px;
  border-bottom: 3px solid #23e6a8;
  box-shadow: 0 4px 8px rgba(47, 197, 192, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.section-hero-banner__cta:hover,
.section-hero-banner__cta:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(47, 197, 192, 0.35);
}

.section-hero-banner__right {
  position: relative;
  display: flex;
  justify-content: center;
}

.section-hero-banner__main-figure {
  position: relative;
  max-width: 820px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.section-hero-banner__main-image {
  width: 100%;
  border-radius: 32px;
  overflow: hidden;
  background: #ebf3ff;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.06);
}

.section-hero-banner__badge {
  position: absolute;
  left: 50%;
  bottom: 18%;
  transform: translate(-50%, 0);
  min-width: 160px;
  padding: 14px 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, #63d3ce 0%, #4686ef 100%);
  color: #ffffff;
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
  box-shadow: 0 10px 24px rgba(70, 134, 239, 0.35);
}

.section-hero-banner__badge-value {
  font-family: "Archivo", "Arial", sans-serif;
  font-weight: 900;
  font-size: 22px;
  line-height: 28px;
}

.section-hero-banner__badge-caption {
  font-family: "Involve", "Arial", sans-serif;
  font-weight: 600;
  font-size: 13px;
  line-height: 18px;
}

.section-hero-banner__logos {
  position: relative;
  z-index: 1;
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 28px 36px;
  align-items: center;
  justify-content: center;
}

.section-hero-banner__logo {
  flex: 0 1 auto;
}

.section-hero-banner__logo-image {
  max-width: 170px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

@media (max-width: 960px) {
  .section-hero-banner {
    padding: 40px 20px;
  }

  .section-hero-banner__title {
    font-size: 44px;
    line-height: 1.15;
  }

  .section-hero-banner__badge {
    bottom: 12%;
    transform: translate(-50%, 0);
  }
}

@media (max-width: 640px) {
  .section-hero-banner__container {
    gap: 24px;
  }

  .section-hero-banner__left {
    gap: 16px;
  }

  .section-hero-banner__title {
    font-size: 36px;
  }

  .section-hero-banner__subtitle {
    font-size: 16px;
    line-height: 24px;
  }

  .section-hero-banner__cta {
    font-size: 16px;
    padding: 14px 22px;
  }
}
