.hero {
  margin-top: 80px;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.hero h1 {
  font-size: 25px;
  font-weight: 800;
  margin-bottom: 16px;
}

.hero p {
  font-size: 18px;
  opacity: 0.75;
  line-height: 1.6;
  margin-bottom: 30px;
}

.hero-logged {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  background: rgba(46, 204, 113, 0.15);
  color: #2ecc71;

  padding: 12px 20px;
  border-radius: 14px;
  font-weight: 600;
}

.features {
  margin-top: 100px;
  padding-bottom: 80px;

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);

  border-radius: 20px;
  padding: 30px;
  text-align: center;

  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}

.feature-card i {
  font-size: 34px;
  color: #5865f2;
  margin-bottom: 14px;
}

.hero {
  max-width: 900px;
  margin: 140px auto 0;
  text-align: center;
}

.hero h1 {
  font-size: 64px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 24px;
}

.hero-desc {
  font-size: 20px;
  opacity: 0.7;
  line-height: 1.7;
  margin-bottom: 48px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.hero-btn {
  padding: 16px 30px;
  border-radius: 16px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.hero-btn.primary {
  background: linear-gradient(135deg, #5865f2, #4752c4);
  color: #fff;
}

.hero-btn.primary:hover {
  background: linear-gradient(135deg, #4752c4, #5865f2);
  box-shadow: 0 20px 50px rgba(88, 101, 242, 0.45);
}

.hero-btn.ghost {
  border: 2px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  background: transparent;
}

.hero-btn.ghost:hover {
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 20px 50px rgba(255, 255, 255, 0.1);
}

.divider {
  width: 300px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #535050, transparent);
  margin: 120px auto;
  border-radius: 999px;
}

.features {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

.feature-card {
  padding: 36px 30px;
  border-radius: 22px;
  background: rgba(0, 0, 0, 0.073);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

.feature-card i {
  font-size: 36px;
  color: #5865f2;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.feature-card p {
  opacity: 0.7;
  line-height: 1.6;
}

.cta {
  margin: 140px auto 80px;
  max-width: 900px;
  padding: 80px 40px;
  text-align: center;
  border-radius: 32px;
  background: rgba(0, 0, 0, 0.073);
  box-shadow: 0 40px 120px rgba(255, 255, 255, 0.045);
}

.cta h2 {
  font-size: 42px;
  margin-bottom: 16px;
}

.cta p {
  opacity: 0.75;
  margin-bottom: 36px;
}

.stats {
  margin: 80px auto;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.stat-card {
  padding: 30px 50px;
  border-radius: 20px;
  text-align: center;

  background: rgba(0, 0, 0, 0.103);
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);

  box-shadow: 0 20px 50px rgba(255, 255, 255, 0.045);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 70px rgba(88,101,242,0.3);
}

.stat-number {
  font-size: 48px;
  font-weight: 800;
  color: #5865f2;
  margin-bottom: 8px;
  transition: all 0.3s ease;
}

.stat-label {
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.7;
}

.premium-promo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 140px auto;
  gap: 40px;
  flex-wrap: wrap;
  padding: 60px 20px;
  background: rgba(0, 0, 0, 0.073);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 32px;
  backdrop-filter: blur(12px);
  box-shadow: 0 40px 120px rgba(255, 255, 255, 0.045);
}

.premium-content {
  flex: 1 1 400px;
  min-width: 280px;
}

.premium-content h2 {
  font-size: 36px;
  font-weight: 900;
  margin-bottom: 16px;
  color: #cbcbe6e4;
}

.premium-content p {
  font-size: 18px;
  line-height: 1.7;
  opacity: 0.8;
  margin-bottom: 32px;
}

.premium-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.premium-visual {
  flex: 1 1 300px;
  min-width: 220px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.premium-visual img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  object-fit: contain;
  box-shadow: 0 20px 50px rgba(88,101,242,0.25);
}

@media (max-width: 800px) {
  .premium-promo {
    flex-direction: column-reverse;
    padding: 40px 20px;
    text-align: center;
  }

  .premium-actions {
    justify-content: center;
  }

  .premium-content h2 {
    font-size: 28px;
  }

  .premium-content p {
    font-size: 16px;
  }

  .premium-visual {
    margin-bottom: 20px;
  }
}

.illus-circle {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, #443f3f, #2c2c2f);
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.illus-circle i {
  font-size: 48px;
  color: #fff;
}

/* BACKGROUND EFFECT */
.hero-bg {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(88,101,242,0.25), transparent 70%);
  filter: blur(120px);
  z-index: -1;
}

/* HERO */
.hero {
  position: relative;
  margin-top: 120px;
  text-align: center;
}

.hero-title {
  font-size: 72px;
  font-weight: 900;
  line-height: 1.1;
}

.gradient-text {
  background: linear-gradient(135deg, #5865f2, #8f9bff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* BUTTON GLOW */
.hero-btn.glow {
  box-shadow: 0 0 20px rgba(88,101,242,0.6);
}

.hero-btn.glow:hover {
  box-shadow: 0 0 40px rgba(88,101,242,0.9);
}

/* STATS ANIMATION */
.stat-number {
  transition: transform 0.2s ease;
}

.stat-card:hover .stat-number {
  transform: scale(1.2);
}

.feature-card {
  position: relative;
  overflow: hidden;
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(88,101,242,0.2), transparent);
  opacity: 0;
  transition: 0.3s;
}

.feature-card:hover::after {
  opacity: 1;
}

.cta {
  background: linear-gradient(
    135deg,
    rgba(88,101,242,0.15),
    rgba(0,0,0,0.4)
  );
}
