.hero {
  background: var(--gradient-section);
  overflow: hidden;
  position: relative;
}

.hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding) 80px;
}

.hero__content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  width: 100%;
  position: relative;
}

.hero__stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-shrink: 0;
  width: 265px;
  padding: 10px 0;
}
.hero__stats--mob {
  display: none;
}
.hero__stats--left {
  align-items: flex-end;
}

.hero__stats--right {
  align-items: flex-start;
}

.hero__stat-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: var(--color-glass);
  border: 1px solid var(--color-border-stat);
  border-radius: var(--radius-sm);
  padding: 16px;
}

.hero__stat-value {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-cyan-light);
}

.hero__stat-label {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text-primary);
}

.hero__image-wrap {
  flex-shrink: 0;
  width: 540px;
  display: flex;
  justify-content: center;
  position: relative;
}

.hero__image {
  width: 100%;
  height: auto;
  max-height: 642px;
  object-fit: contain;
}

.hero__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
  margin-top: -40px;
  position: relative;
  z-index: 2;
}

.hero__title {
  font-size: 54px;
  font-weight: 900;
  line-height: 60px;
  color: var(--color-text-primary);
  max-width: 700px;
}

.hero__subtitle {
  font-size: 24px;
  font-weight: 400;
  color: var(--color-text-body);
  max-width: 600px;
  line-height: 1.5;
}

@media (max-width: 1023px) {
  .hero__content {
    flex-direction: column;
    gap: 1rem;
  }
  .hero__stats--mob {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    width: 100%;
    justify-content: center;
    margin-top: 1.5rem;
  }
  .hero__stat-card--mob {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .hero__stat-card--mob {
    background: var(--color-glass);
    border: 1px solid var(--color-border-stat);
    border-radius: var(--radius-sm);
    padding: 2px 4px;
  }
  .hero__stat-value--mob {
    font-weight: 700;
    font-size: 14px;
    text-align: center;
    color: #07d7fc;
  }
  span.hero__stat-label--mob {
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 0px;
    text-align: center;
  }
  .hero__stats {
    flex-direction: row;
    width: 100%;
    justify-content: center;
    display: none;
  }

  .hero__stats--left,
  .hero__stats--right {
    align-items: center;
  }

  .hero__image-wrap {
    width: 400px;
  }

  .hero__title {
    font-size: 40px;
    line-height: 48px;
  }
}

@media (max-width: 768px) {
  .topbar__text {
    font-size: 10px;
  }
  .hero__inner {
    padding-bottom: 48px;
  }

  .hero__stats {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__stat-card {
    min-width: auto;
  }

  .hero__image-wrap {
    width: 100%;
    max-width: 320px;
  }

  .hero__title {
    font-size: 32px;
    line-height: 40px;
  }

  .hero__subtitle {
    font-size: 18px;
  }

  .hero__text {
    margin-top: -20px;
  }
}
