* {
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}

.badge {
  display: inline-block;
  background: rgba(123, 92, 255, 0.12);
  color: #6d4dff;
  padding: 12px 18px;
  border-radius: 100px;
  margin-bottom: 24px;
  font-size: 14px;
  font-weight: 600;
}

.hero h1 {
  font-size: 72px;
  line-height: 1.05;
  margin-bottom: 24px;
}

.hero h1 span {
  color: #6f52ff;
}

.hero p {
  font-size: 20px;
  line-height: 1.7;
  color: #666;
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-top: 36px;
}

.btn-primary,
.btn-secondary {
  text-decoration: none;
  padding: 16px 28px;
  border-radius: 16px;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #7a5cff, #5b3fff);
  color: white;
}

.btn-secondary {
  background: white;
  border: 1px solid #ececec;
  color: #111;
}

.large {
  padding: 18px 32px;
}

.stats {
  display: flex;
  gap: 60px;
  margin-top: 48px;
}

.stats h3 {
  font-size: 36px;
  margin-bottom: 8px;
}

.stats span {
  color: #666;
}

.hero-right {
  text-align: center;
}

.hero-right img {
  width: 90%;
}

.features,
}