.los-hero {
  padding: 120px 0 60px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.los-hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}

.los-hero__title {
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1;
  color: #fff;
  margin: 0 0 24px;
  text-transform: uppercase;
}

.los-hero__subtitle {
  color: var(--los-text-muted-2);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 480px;
}

.los-hero__cta {
  align-self: flex-start;
}

.los-hero__visual {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin-left: auto;
  justify-items: center;
}

.los-hero__stats {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  pointer-events: none;
}

.los-hero__stat {
  pointer-events: auto;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 14px 22px;
  min-width: 170px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
}

.los-hero__stat--left {
  background: #9c82f4;
  border-radius: 28px 28px 8px 28px;
  border-color: rgba(255, 255, 255, 0.18);
}

.los-hero__stat--right {
  background: #1c1248;
  border-radius: 28px 28px 28px 8px;
}

.los-hero__stat-top {
  display: flex;
  align-items: center;
  gap: 10px;
}

.los-hero__stat-value {
  font-family: var(--los-font-display);
  font-size: 26px;
  color: #fff;
  line-height: 1;
}

.los-hero__stat-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--los-green);
  box-shadow: 0 0 0 4px rgba(46, 204, 113, 0.2);
  display: inline-block;
}

.los-hero__stat-label {
  color: var(--los-text-muted-2);
  font-size: 13px;
  margin-top: 4px;
}

@media (max-width: 900px) {
  .los-hero {
    padding: 100px 0 32px;
  }
  .los-hero__inner {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  .los-hero__subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  .los-hero__cta {
    margin: 0 auto;
  }
  .los-hero__visual {
    margin: 0 auto;
    padding-top: 56px;
  }
}

@media (max-width: 600px) {
  .los-hero__title {
    font-size: 38px;
  }
  .los-hero__visual {
    padding-top: 44px;
  }
  .los-hero__stat {
    min-width: 0;
    padding: 10px 14px;
  }
  .los-hero__stat-value {
    font-size: 20px;
  }
  .los-hero__stat-label {
    font-size: 11px;
  }
}
