.hero {
  background: var(--color-bg-dark);
  overflow: hidden;
}

.hero-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-bottom: 3rem;
}
.hero-content h3 {
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 22.5px;
}
.hero-subtitle {
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 22.5px;
  color: var(--color-text-white);
}
.hero h1,
.hero-title {
  font-size: 70px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 3.18px;
  color: var(--color-text-white);
}
.hero p,
.hero-description {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -1.44px;
  color: var(--color-text-white);
  max-width: 600px;
}

.hero-stats {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 16px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 7px;
  align-items: center;
  width: 141px;
  text-align: center;
}

.stat-number {
  font-size: 38px;
  font-weight: 900;
  letter-spacing: -0.38px;
  color: #ad6ef9;
}

.stat-label {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.16px;
  color: var(--color-text-white);
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: end;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

@media (max-width: 1200px) {
  .hero-wrapper {
    gap: 48px;
  }
  .hero h1,
  .hero-title {
    font-size: 60px;
  }
}

@media (max-width: 1024px) {
  .hero-content {
    align-items: center;
    text-align: center;
  }
  .hero-wrapper {
    grid-template-columns: 1fr;
    gap: 0px;
  }

  .hero-image {
    max-width: 400px;
    margin: 0 auto;
  }
  .hero h1,
  .hero-title {
    font-size: 50px;
  }

  .hero-subtitle {
    font-size: 20px;
    letter-spacing: 12px;
  }

  .hero-content h3 {
    font-size: 20px;
    letter-spacing: 12px;
  }
  .hero p,
  .hero-description {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .hero h1,
  .hero-title {
    font-size: 40px;
  }

  .hero-subtitle {
    font-size: 16px;
    letter-spacing: 8px;
  }

  .hero-content h3 {
    font-size: 16px;
    letter-spacing: 8px;
  }
  .hero p,
  .hero-description {
    font-size: 18px;
  }

  .hero-stats {
    gap: 24px;
  }

  .stat-item {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hero h1,
  .hero-title {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 14px;
    letter-spacing: 4px;
  }
  .hero p,
  .hero-description {
    font-size: 16px;
  }
}
