.hero-banner {
  background: linear-gradient(to bottom, #7fa3ff, var(--color-gradient-purple-end));
  border-radius: var(--border-radius-medium);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  overflow: hidden;
}

.hero-content {
  padding: 40px 0 40px 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-badge {
  text-align: center;
  background: linear-gradient(
    to bottom,
    var(--color-gradient-green-start),
    var(--color-gradient-green-end)
  );
  border-radius: var(--border-radius-large);
  padding: 12px 32px;
  display: inline-block;
  transform: rotate(-3.8deg);
  width: fit-content;
}

.hero-badge-text {
  font-size: 16px;
  font-weight: 900;
  color: var(--color-green-text);
}

.hero-title {
  font-size: 48px;
  font-weight: 900;
  line-height: 59px;
  color: var(--color-text-primary);
  margin-bottom: 7px;
}

.hero-description {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.37;
  color: var(--color-text-secondary);
}

.hero-stats {
  display: flex;
  gap: 43px;
}

.hero-stat {
  text-align: center;
}

.hero-stat-number {
  font-size: 29px;
  font-weight: 400;
  color: var(--color-text-primary);
  letter-spacing: -0.29px;
  margin-bottom: 3px;
}

.hero-stat-label {
  font-size: 12px;
  font-weight: 400;
  color: var(--color-text-primary);
  letter-spacing: -0.12px;
}

.hero-image {
  display: flex;
  align-items: end;
  justify-content: center;
  height: 100%;
}

.hero-mascot {
  width: 100%;
  height: auto;
}

@media (max-width: 1024px) {
  .hero-banner {
    min-height: 450px;
  }

  .hero-content {
    padding: 40px;
  }

  .hero-title {
    font-size: 40px;
    line-height: 50px;
  }

  .hero-mascot {
    max-width: 400px;
  }
}

@media (max-width: 768px) {
  .hero-badge {
    margin: 0 auto;
  }

  .hero-banner {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-content {
    padding: 30px 20px;
  }

  .hero-title {
    font-size: 32px;
    line-height: 40px;
    text-align: center;
  }
  .hero-description {
    text-align: center;
  }

  .hero-mascot {
    max-width: 300px;
  }

  .hero-stats {
    justify-content: center;
    gap: 20px;
  }
}
